diff options
author | Thomas Weber <weber@corscience.de> | 2010-03-24 08:52:16 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-04-23 18:35:11 -0400 |
commit | 2135bb53fb6c9a4b2ed7901b2b176a6100e29f6b (patch) | |
tree | 9afebbddcba03c87ada647074f9baec2bcdb5049 /arch/arm/mach-omap2/board-devkit8000.c | |
parent | 3655e0b415506a4d162ed4b2b12408c80dcfa4a2 (diff) |
omap: Devkit8000: Fix wrong usb port on Devkit8000
Disable the nonexistent ehci port on Devkit8000.
Signed-off-by: Thomas Weber <weber@corscience.de>
Acked-by: Anand Gadiyar <gadiyar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-devkit8000.c')
-rw-r--r-- | arch/arm/mach-omap2/board-devkit8000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 5bfc13b3176c..db4c093e2afb 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.c | |||
@@ -639,12 +639,12 @@ static struct omap_musb_board_data musb_board_data = { | |||
639 | static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { | 639 | static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { |
640 | 640 | ||
641 | .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, | 641 | .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, |
642 | .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, | 642 | .port_mode[1] = EHCI_HCD_OMAP_MODE_UNKNOWN, |
643 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, | 643 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, |
644 | 644 | ||
645 | .phy_reset = true, | 645 | .phy_reset = true, |
646 | .reset_gpio_port[0] = -EINVAL, | 646 | .reset_gpio_port[0] = -EINVAL, |
647 | .reset_gpio_port[1] = 147, | 647 | .reset_gpio_port[1] = -EINVAL, |
648 | .reset_gpio_port[2] = -EINVAL | 648 | .reset_gpio_port[2] = -EINVAL |
649 | }; | 649 | }; |
650 | 650 | ||