mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
gpio: sa1100: fix irq probing for ucb1x00
commit56beac95cbupstream. ucb1x00 has used IRQ probing since it's dawn to find the GPIO interrupt that it's connected to. However, commit23393d49fb("gpio: kill off set_irq_flags usage") broke this by disabling IRQ probing on GPIO interrupts. Fix this. Fixes:23393d49fb("gpio: kill off set_irq_flags usage") Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b5f881a43e
commit
15e5567326
@@ -155,7 +155,7 @@ static int sa1100_gpio_irqdomain_map(struct irq_domain *d,
|
|||||||
{
|
{
|
||||||
irq_set_chip_and_handler(irq, &sa1100_gpio_irq_chip,
|
irq_set_chip_and_handler(irq, &sa1100_gpio_irq_chip,
|
||||||
handle_edge_irq);
|
handle_edge_irq);
|
||||||
irq_set_noprobe(irq);
|
irq_set_probe(irq);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user