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>
This commit is contained in:
parent
7a2bb23c14
commit
5055d1efc0
1 changed files with 6 additions and 6 deletions
|
@ -289,12 +289,6 @@ static struct spi_board_info eukrea_mbimx27_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = {
|
|
||||||
{
|
|
||||||
I2C_BOARD_INFO("tlv320aic23", 0x1a),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28};
|
static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28};
|
||||||
|
|
||||||
static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = {
|
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 = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = {
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("tlv320aic23", 0x1a),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device *platform_devices[] __initdata = {
|
static struct platform_device *platform_devices[] __initdata = {
|
||||||
&leds_gpio,
|
&leds_gpio,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue