summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/gpio.c
diff options
context:
space:
mode:
authorAlexandre Bailon <abailon@baylibre.com>2015-03-02 17:32:43 +0100
committerGreg Kroah-Hartman <greg@kroah.com>2015-03-02 08:54:20 -0800
commitd1b20d72ae01a2846ed4cad7bfef0bea717ffb68 (patch)
tree3486c23dfe125f602601fa029f3caa213ffea703 /drivers/staging/greybus/gpio.c
parent184ab534de842a1baf08a0d7f3621b26bcea44dc (diff)
greybus: gpio.c: fix a bad irq number
When it receive an interrupt, the function gb_gpio_request_recv doesn't use the good gpio number to get the irq number. Then, the expected irq is never fired. Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
Diffstat (limited to 'drivers/staging/greybus/gpio.c')
-rw-r--r--drivers/staging/greybus/gpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/gpio.c b/drivers/staging/greybus/gpio.c
index 81901bdd9477..4af5050edea0 100644
--- a/drivers/staging/greybus/gpio.c
+++ b/drivers/staging/greybus/gpio.c
@@ -421,7 +421,7 @@ static void gb_gpio_request_recv(u8 type, struct gb_operation *op)
pr_err("Unsupported hw irq %d\n", event->which);
return;
}
- irq = gpio_to_irq(ggc->irq_base + event->which);
+ irq = gpio_to_irq(ggc->chip.base + event->which);
desc = irq_to_desc(irq);
/* Dispatch interrupt */