diff options
author | Olof Johansson <olof@lixom.net> | 2012-03-29 15:25:23 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-03-29 15:25:23 -0400 |
commit | a92e7023caf6c3a58b047a4c3fc9e4981b327bb8 (patch) | |
tree | 44eb26c76f9c566295476c4c5cae0fa96a19d2f7 /arch/arm/mach-omap2/board-rx51-peripherals.c | |
parent | a99ab88815aec12bd257e121dee06003e2401a68 (diff) | |
parent | 2533c2cfbff8f0ee53b8448d6362b54c272125aa (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-omap2/board-rx51-peripherals.c')
-rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index f120997309af..d87ee0612098 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
@@ -170,7 +170,6 @@ static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = { | |||
170 | .modalias = "tsc2005", | 170 | .modalias = "tsc2005", |
171 | .bus_num = 1, | 171 | .bus_num = 1, |
172 | .chip_select = 0, | 172 | .chip_select = 0, |
173 | .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO), | ||
174 | .max_speed_hz = 6000000, | 173 | .max_speed_hz = 6000000, |
175 | .controller_data = &tsc2005_mcspi_config, | 174 | .controller_data = &tsc2005_mcspi_config, |
176 | .platform_data = &tsc2005_pdata, | 175 | .platform_data = &tsc2005_pdata, |
@@ -1129,6 +1128,8 @@ static void __init rx51_init_tsc2005(void) | |||
1129 | } | 1128 | } |
1130 | 1129 | ||
1131 | tsc2005_pdata.set_reset = rx51_tsc2005_set_reset; | 1130 | tsc2005_pdata.set_reset = rx51_tsc2005_set_reset; |
1131 | rx51_peripherals_spi_board_info[RX51_SPI_TSC2005].irq = | ||
1132 | gpio_to_irq(RX51_TSC2005_IRQ_GPIO); | ||
1132 | } | 1133 | } |
1133 | 1134 | ||
1134 | void __init rx51_peripherals_init(void) | 1135 | void __init rx51_peripherals_init(void) |