Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89092fb0 authored by Ludovic Desroches's avatar Ludovic Desroches Committed by Linus Walleij
Browse files

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: default avatarLudovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 3fd550c6
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;