Commit 77a4d757 authored by Philipp Rosenberger's avatar Philipp Rosenberger Committed by Linus Walleij

gpio: gpio-mxc: gpio_set_wake_irq() use proper return values

Errors from enable_irq_wake() in gpio_set_wake_irq() were silently ignored.
Thus led to the problem that gpio_set_wake_irq() always returned
successfully, even if enable_irq_wake() returned an error.
Signed-off-by: default avatarPhilipp Rosenberger <p.rosenberger@linutronix.de>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent dbd1dad2
...@@ -324,20 +324,21 @@ static int gpio_set_wake_irq(struct irq_data *d, u32 enable) ...@@ -324,20 +324,21 @@ static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
struct mxc_gpio_port *port = gc->private; struct mxc_gpio_port *port = gc->private;
u32 gpio_idx = d->hwirq; u32 gpio_idx = d->hwirq;
int ret;
if (enable) { if (enable) {
if (port->irq_high && (gpio_idx >= 16)) if (port->irq_high && (gpio_idx >= 16))
enable_irq_wake(port->irq_high); ret = enable_irq_wake(port->irq_high);
else else
enable_irq_wake(port->irq); ret = enable_irq_wake(port->irq);
} else { } else {
if (port->irq_high && (gpio_idx >= 16)) if (port->irq_high && (gpio_idx >= 16))
disable_irq_wake(port->irq_high); ret = disable_irq_wake(port->irq_high);
else else
disable_irq_wake(port->irq); ret = disable_irq_wake(port->irq);
} }
return 0; return ret;
} }
static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base) static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment