diff options
author | Tom Rini | 2017-05-12 22:33:27 -0400 |
---|---|---|
committer | Tom Rini | 2017-05-15 10:40:05 -0400 |
commit | 8850c5d57c10aa6431d138d426e6e105c99cc7ba (patch) | |
tree | 6f1e76b3b38dd2e2ff780a4919db43d3ab645867 /board/teejet/mt_ventoux/mt_ventoux.c | |
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/teejet/mt_ventoux/mt_ventoux.c')
-rw-r--r-- | board/teejet/mt_ventoux/mt_ventoux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/teejet/mt_ventoux/mt_ventoux.c b/board/teejet/mt_ventoux/mt_ventoux.c index 6b05541964c..6e73ae114a6 100644 --- a/board/teejet/mt_ventoux/mt_ventoux.c +++ b/board/teejet/mt_ventoux/mt_ventoux.c @@ -23,7 +23,7 @@ #include <i2c.h> #include <spartan3.h> #include <asm/gpio.h> -#ifdef CONFIG_USB_EHCI +#ifdef CONFIG_USB_EHCI_HCD #include <usb.h> #include <asm/ehci-omap.h> #endif @@ -95,7 +95,7 @@ static const u32 gpmc_fpga[] = { FPGA_GPMC_CONFIG6, }; -#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_EHCI_PORT_MODE_PHY, |