mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[ARM] Fix omap_h2_1610_defconfig regressions
Fix: arch/arm/mach-omap1/built-in.o: In function `h2_init': board-h2.c:(.init.text+0xbb4): undefined reference to `i2c_register_board_info' Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
914301982f
commit
b23e79fd87
1 changed files with 4 additions and 0 deletions
|
@ -343,6 +343,7 @@ static struct platform_device *h2_devices[] __initdata = {
|
|||
&h2_mcbsp1_device,
|
||||
};
|
||||
|
||||
#ifdef CONFIG_I2C_BOARDINFO
|
||||
static struct i2c_board_info __initdata h2_i2c_board_info[] = {
|
||||
{
|
||||
I2C_BOARD_INFO("tps65010", 0x48),
|
||||
|
@ -356,6 +357,7 @@ static struct i2c_board_info __initdata h2_i2c_board_info[] = {
|
|||
* - ... etc
|
||||
*/
|
||||
};
|
||||
#endif
|
||||
|
||||
static void __init h2_init_smc91x(void)
|
||||
{
|
||||
|
@ -467,8 +469,10 @@ static void __init h2_init(void)
|
|||
if (gpio_request(58, "tps65010") == 0)
|
||||
gpio_direction_input(58);
|
||||
|
||||
#ifdef CONFIG_I2C_BOARDINFO
|
||||
i2c_register_board_info(1, h2_i2c_board_info,
|
||||
ARRAY_SIZE(h2_i2c_board_info));
|
||||
#endif
|
||||
}
|
||||
|
||||
static void __init h2_map_io(void)
|
||||
|
|
Loading…
Reference in a new issue