diff options
author | Eric Bénard <eric@eukrea.com> | 2010-07-19 03:45:17 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-07-26 09:05:20 -0400 |
commit | 5055d1efc0cb4bd612c78af8fa61316ae49755a9 (patch) | |
tree | f27764f9adfdb7e04c7f305ed40e776ce5af5088 /arch/arm/mach-imx | |
parent | 7a2bb23c149e9f093b2b83c16c25991e32ef4ec3 (diff) |
eukrea_mbimx27-baseboard: fix compile when CONFIG_SPI_IMX is disabled
the i2c_board_info structure landed into the SPI #if/#endif
which is wrong.
Signed-off-by: Eric Bénard <eric@eukrea.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/eukrea_mbimx27-baseboard.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c b/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c index 27e7226ec9d4..4edc5f439201 100644 --- a/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c +++ b/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c | |||
@@ -289,12 +289,6 @@ static struct spi_board_info eukrea_mbimx27_spi_board_info[] __initdata = { | |||
289 | }, | 289 | }, |
290 | }; | 290 | }; |
291 | 291 | ||
292 | static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = { | ||
293 | { | ||
294 | I2C_BOARD_INFO("tlv320aic23", 0x1a), | ||
295 | }, | ||
296 | }; | ||
297 | |||
298 | static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28}; | 292 | static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28}; |
299 | 293 | ||
300 | static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = { | 294 | static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = { |
@@ -303,6 +297,12 @@ static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = { | |||
303 | }; | 297 | }; |
304 | #endif | 298 | #endif |
305 | 299 | ||
300 | static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = { | ||
301 | { | ||
302 | I2C_BOARD_INFO("tlv320aic23", 0x1a), | ||
303 | }, | ||
304 | }; | ||
305 | |||
306 | static struct platform_device *platform_devices[] __initdata = { | 306 | static struct platform_device *platform_devices[] __initdata = { |
307 | &leds_gpio, | 307 | &leds_gpio, |
308 | }; | 308 | }; |