diff options
author | Tom Rini <trini@konsulko.com> | 2017-05-12 22:33:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-15 10:40:05 -0400 |
commit | 8850c5d57c10aa6431d138d426e6e105c99cc7ba (patch) | |
tree | 6f1e76b3b38dd2e2ff780a4919db43d3ab645867 /board/htkw/mcx | |
parent | 86a030791822d4ccc3ea3779b4af68bced555977 (diff) |
Kconfig: USB: Migrate CONFIG_USB_EHCI to CONFIG_USB_EHCI_HCD
In order to be able to migrate the various SoC EHCI CONFIG options we
first need to finish the switch from CONFIG_USB_EHCI to
CONFIG_USB_EHCI_HCD.
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/htkw/mcx')
-rw-r--r-- | board/htkw/mcx/mcx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/htkw/mcx/mcx.c b/board/htkw/mcx/mcx.c index 12358f1b619..1deb2bdd8b7 100644 --- a/board/htkw/mcx/mcx.c +++ b/board/htkw/mcx/mcx.c @@ -19,7 +19,7 @@ #include <asm/arch/clock.h> #include <errno.h> #include <i2c.h> -#ifdef CONFIG_USB_EHCI +#ifdef CONFIG_USB_EHCI_HCD #include <usb.h> #include <asm/ehci-omap.h> #endif @@ -33,7 +33,7 @@ DECLARE_GLOBAL_DATA_PTR; /* Address of the framebuffer in RAM. */ #define FB_START_ADDRESS 0x88000000 -#ifdef CONFIG_USB_EHCI +#ifdef CONFIG_USB_EHCI_HCD static struct omap_usbhs_board_data usbhs_bdata = { .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY, .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED, |