aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-devkit8000.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-omap2/board-devkit8000.c')
-rw-r--r--arch/arm/mach-omap2/board-devkit8000.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c
index 89a55f1d07e3..371019054b49 100644
--- a/arch/arm/mach-omap2/board-devkit8000.c
+++ b/arch/arm/mach-omap2/board-devkit8000.c
@@ -630,6 +630,12 @@ static void __init devkit8000_flash_init(void)
630 } 630 }
631} 631}
632 632
633static struct omap_musb_board_data musb_board_data = {
634 .interface_type = MUSB_INTERFACE_ULPI,
635 .mode = MUSB_OTG,
636 .power = 100,
637};
638
633static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { 639static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
634 640
635 .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, 641 .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY,
@@ -665,7 +671,7 @@ static void __init devkit8000_init(void)
665 /* REVISIT leave DVI powered down until it's needed ... */ 671 /* REVISIT leave DVI powered down until it's needed ... */
666 gpio_direction_output(170, true); 672 gpio_direction_output(170, true);
667 673
668 usb_musb_init(); 674 usb_musb_init(&musb_board_data);
669 usb_ehci_init(&ehci_pdata); 675 usb_ehci_init(&ehci_pdata);
670 devkit8000_flash_init(); 676 devkit8000_flash_init();
671 677