Skip to content

Commit ad455e4

Browse files
aakoskinkhilman
authored andcommitted
ARM: omap1: Fix up the Retu IRQ on Nokia 770
The Retu IRQ is off by one, as a result the power button does not work. Fix it. Fixes: 084b6f2 ("ARM: omap1: Fix up the Nokia 770 board device IRQs") Signed-off-by: Aaro Koskinen <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Kevin Hilman <[email protected]>
1 parent 643cc5c commit ad455e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/mach-omap1/board-nokia770.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ static struct gpiod_lookup_table nokia770_irq_gpio_table = {
289289
GPIO_LOOKUP("gpio-0-15", 15, "ads7846_irq",
290290
GPIO_ACTIVE_HIGH),
291291
/* GPIO used for retu IRQ */
292-
GPIO_LOOKUP("gpio-48-63", 15, "retu_irq",
292+
GPIO_LOOKUP("gpio-48-63", 14, "retu_irq",
293293
GPIO_ACTIVE_HIGH),
294294
/* GPIO used for tahvo IRQ */
295295
GPIO_LOOKUP("gpio-32-47", 8, "tahvo_irq",

0 commit comments

Comments
 (0)