pinctrl: at91-pio4: irq argument as been removed from irq flow handlers
authorLudovic Desroches <ludovic.desroches@atmel.com>
Mon, 28 Sep 2015 09:41:13 +0000 (11:41 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 2 Oct 2015 21:52:20 +0000 (14:52 -0700)
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>
drivers/pinctrl/pinctrl-at91-pio4.c

index 1f1a64ef3559773082a0d3e17cdda8bc9edbf368..33edd07d9149b6b2c895d4c9708dc0f95aa41700 100644 (file)
@@ -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;
This page took 0.033571 seconds and 5 git commands to generate.