Message ID | E1beJje-0000lm-Ei@rmk-PC.armlinux.org.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Aug 29, 2016 at 12:24 PM, Russell King <rmk+kernel@armlinux.org.uk> wrote: > ucb1x00 has used IRQ probing since it's dawn to find the GPIO interrupt > that it's connected to. However, commit 23393d49fb75 ("gpio: kill off > set_irq_flags usage") broke this by disabling IRQ probing on GPIO > interrupts. Fix this. > > Fixes: 23393d49fb75 ("gpio: kill off set_irq_flags usage") > Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Patch applied per Russell's request. Trying to get this tested and upstream ASAP. Yours, Linus Walleij
diff --git a/drivers/gpio/gpio-sa1100.c b/drivers/gpio/gpio-sa1100.c index 0c99e8fb9af3..8d8ee0ebf14c 100644 --- a/drivers/gpio/gpio-sa1100.c +++ b/drivers/gpio/gpio-sa1100.c @@ -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; }
ucb1x00 has used IRQ probing since it's dawn to find the GPIO interrupt that it's connected to. However, commit 23393d49fb75 ("gpio: kill off set_irq_flags usage") broke this by disabling IRQ probing on GPIO interrupts. Fix this. Fixes: 23393d49fb75 ("gpio: kill off set_irq_flags usage") Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> --- drivers/gpio/gpio-sa1100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)