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

Commit 56beac95 authored by Russell King's avatar Russell King Committed by Linus Walleij
Browse files

gpio: sa1100: fix irq probing for ucb1x00



ucb1x00 has used IRQ probing since it's dawn to find the GPIO interrupt
that it's connected to.  However, commit 23393d49 ("gpio: kill off
set_irq_flags usage") broke this by disabling IRQ probing on GPIO
interrupts.  Fix this.

Fixes: 23393d49 ("gpio: kill off set_irq_flags usage")
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 60f749f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ static int sa1100_gpio_irqdomain_map(struct irq_domain *d,
{
	irq_set_chip_and_handler(irq, &sa1100_gpio_irq_chip,
				 handle_edge_irq);
	irq_set_noprobe(irq);
	irq_set_probe(irq);

	return 0;
}