aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1/board-innovator.c
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2012-03-29 15:25:23 -0400
committerOlof Johansson <olof@lixom.net>2012-03-29 15:25:23 -0400
commita92e7023caf6c3a58b047a4c3fc9e4981b327bb8 (patch)
tree44eb26c76f9c566295476c4c5cae0fa96a19d2f7 /arch/arm/mach-omap1/board-innovator.c
parenta99ab88815aec12bd257e121dee06003e2401a68 (diff)
parent2533c2cfbff8f0ee53b8448d6362b54c272125aa (diff)
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into fixes
From Tony Lindgren: "This contains the updated gpio_to_irq patches from Tarun, and a trivial build fix from Govindraj to #include <asm/system_misc.h> in pm.c. The DSI mux patch is the same." * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: ARM: OMAP: pm: fix compilation break ARM: OMAP: Remove OMAP_GPIO_IRQ macro definition drivers: input: Fix OMAP_GPIO_IRQ with gpio_to_irq() in ams_delta_serio_exit() ARM: OMAP: boards: Fix OMAP_GPIO_IRQ usage with gpio_to_irq() ARM: OMAP2+: Remove __init from DSI mux functions
Diffstat (limited to 'arch/arm/mach-omap1/board-innovator.c')
-rw-r--r--arch/arm/mach-omap1/board-innovator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap1/board-innovator.c b/arch/arm/mach-omap1/board-innovator.c
index 61219182d16a..67d7fd57a692 100644
--- a/arch/arm/mach-omap1/board-innovator.c
+++ b/arch/arm/mach-omap1/board-innovator.c
@@ -248,8 +248,6 @@ static struct resource innovator1610_smc91x_resources[] = {
248 .flags = IORESOURCE_MEM, 248 .flags = IORESOURCE_MEM,
249 }, 249 },
250 [1] = { 250 [1] = {
251 .start = OMAP_GPIO_IRQ(0),
252 .end = OMAP_GPIO_IRQ(0),
253 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE, 251 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
254 }, 252 },
255}; 253};
@@ -409,6 +407,8 @@ static void __init innovator_init(void)
409#endif 407#endif
410#ifdef CONFIG_ARCH_OMAP16XX 408#ifdef CONFIG_ARCH_OMAP16XX
411 if (!cpu_is_omap1510()) { 409 if (!cpu_is_omap1510()) {
410 innovator1610_smc91x_resources[1].start = gpio_to_irq(0);
411 innovator1610_smc91x_resources[1].end = gpio_to_irq(0);
412 platform_add_devices(innovator1610_devices, ARRAY_SIZE(innovator1610_devices)); 412 platform_add_devices(innovator1610_devices, ARRAY_SIZE(innovator1610_devices));
413 } 413 }
414#endif 414#endif