diff options
Diffstat (limited to 'arch/arm/mach-omap1/board-h2.c')
-rw-r--r-- | arch/arm/mach-omap1/board-h2.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/board-h2.c b/arch/arm/mach-omap1/board-h2.c index 0d784a795092..f695aa053ac8 100644 --- a/arch/arm/mach-omap1/board-h2.c +++ b/arch/arm/mach-omap1/board-h2.c | |||
@@ -46,6 +46,11 @@ | |||
46 | #include <mach/keypad.h> | 46 | #include <mach/keypad.h> |
47 | #include <mach/common.h> | 47 | #include <mach/common.h> |
48 | 48 | ||
49 | #include "board-h2.h" | ||
50 | |||
51 | /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ | ||
52 | #define OMAP1610_ETHR_START 0x04000300 | ||
53 | |||
49 | static int h2_keymap[] = { | 54 | static int h2_keymap[] = { |
50 | KEY(0, 0, KEY_LEFT), | 55 | KEY(0, 0, KEY_LEFT), |
51 | KEY(0, 1, KEY_RIGHT), | 56 | KEY(0, 1, KEY_RIGHT), |
@@ -364,7 +369,6 @@ static struct omap_lcd_config h2_lcd_config __initdata = { | |||
364 | }; | 369 | }; |
365 | 370 | ||
366 | static struct omap_board_config_kernel h2_config[] __initdata = { | 371 | static struct omap_board_config_kernel h2_config[] __initdata = { |
367 | { OMAP_TAG_USB, &h2_usb_config }, | ||
368 | { OMAP_TAG_UART, &h2_uart_config }, | 372 | { OMAP_TAG_UART, &h2_uart_config }, |
369 | { OMAP_TAG_LCD, &h2_lcd_config }, | 373 | { OMAP_TAG_LCD, &h2_lcd_config }, |
370 | }; | 374 | }; |
@@ -413,6 +417,7 @@ static void __init h2_init(void) | |||
413 | omap_serial_init(); | 417 | omap_serial_init(); |
414 | omap_register_i2c_bus(1, 100, h2_i2c_board_info, | 418 | omap_register_i2c_bus(1, 100, h2_i2c_board_info, |
415 | ARRAY_SIZE(h2_i2c_board_info)); | 419 | ARRAY_SIZE(h2_i2c_board_info)); |
420 | omap_usb_init(&h2_usb_config); | ||
416 | h2_mmc_init(); | 421 | h2_mmc_init(); |
417 | } | 422 | } |
418 | 423 | ||