Skip to content

Commit 56beac9

Browse files
Russell Kinglinusw
authored andcommitted
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 23393d4 ("gpio: kill off set_irq_flags usage") broke this by disabling IRQ probing on GPIO interrupts. Fix this. Fixes: 23393d4 ("gpio: kill off set_irq_flags usage") Signed-off-by: Russell King <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent 60f749f commit 56beac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpio/gpio-sa1100.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static int sa1100_gpio_irqdomain_map(struct irq_domain *d,
155155
{
156156
irq_set_chip_and_handler(irq, &sa1100_gpio_irq_chip,
157157
handle_edge_irq);
158-
irq_set_noprobe(irq);
158+
irq_set_probe(irq);
159159

160160
return 0;
161161
}

0 commit comments

Comments
 (0)