Commit 2135bb53 authored by Thomas Weber's avatar Thomas Weber Committed by Tony Lindgren

omap: Devkit8000: Fix wrong usb port on Devkit8000

Disable the nonexistent ehci port on Devkit8000.
Signed-off-by: default avatarThomas Weber <weber@corscience.de>
Acked-by: default avatarAnand Gadiyar <gadiyar@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 3655e0b4
...@@ -639,12 +639,12 @@ static struct omap_musb_board_data musb_board_data = { ...@@ -639,12 +639,12 @@ static struct omap_musb_board_data musb_board_data = {
static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
.port_mode[0] = EHCI_HCD_OMAP_MODE_PHY, .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY,
.port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, .port_mode[1] = EHCI_HCD_OMAP_MODE_UNKNOWN,
.port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
.phy_reset = true, .phy_reset = true,
.reset_gpio_port[0] = -EINVAL, .reset_gpio_port[0] = -EINVAL,
.reset_gpio_port[1] = 147, .reset_gpio_port[1] = -EINVAL,
.reset_gpio_port[2] = -EINVAL .reset_gpio_port[2] = -EINVAL
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment