diff options
author | Ludovic Desroches <ludovic.desroches@atmel.com> | 2015-09-28 12:41:13 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-10-03 00:52:20 +0300 |
commit | 89092fb0701d3b4070ade6d0aa04640720f52fbd (patch) | |
tree | b687260a7045e74b9129a684ac43c8747bad865e /drivers/pinctrl | |
parent | 3fd550c6b3cb364a0d3f0e4abf64618b998dc6b4 (diff) | |
download | linux-89092fb0701d3b4070ade6d0aa04640720f52fbd.tar.xz |
pinctrl: at91-pio4: irq argument as been removed from irq flow handlers
Irq argument as been removed from irq flow handlers so use the irq
descriptor to retrieve data we need.
Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91-pio4.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-at91-pio4.c b/drivers/pinctrl/pinctrl-at91-pio4.c index 1f1a64ef3559..33edd07d9149 100644 --- a/drivers/pinctrl/pinctrl-at91-pio4.c +++ b/drivers/pinctrl/pinctrl-at91-pio4.c @@ -248,9 +248,10 @@ static struct irq_chip atmel_gpio_irq_chip = { .irq_set_wake = atmel_gpio_irq_set_wake, }; -static void atmel_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) +static void atmel_gpio_irq_handler(struct irq_desc *desc) { - struct atmel_pioctrl *atmel_pioctrl = irq_get_handler_data(irq); + unsigned int irq = irq_desc_get_irq(desc); + struct atmel_pioctrl *atmel_pioctrl = irq_desc_get_handler_data(desc); struct irq_chip *chip = irq_desc_get_chip(desc); unsigned long isr; int n, bank = -1; |