summaryrefslogtreecommitdiff
path: root/board/technexion/tao3530
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-05-13 02:33:27 (GMT)
committerTom Rini <trini@konsulko.com>2017-05-15 14:40:05 (GMT)
commit8850c5d57c10aa6431d138d426e6e105c99cc7ba (patch)
tree6f1e76b3b38dd2e2ff780a4919db43d3ab645867 /board/technexion/tao3530
parent86a030791822d4ccc3ea3779b4af68bced555977 (diff)
downloadu-boot-8850c5d57c10aa6431d138d426e6e105c99cc7ba.tar.xz
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/technexion/tao3530')
-rw-r--r--board/technexion/tao3530/tao3530.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/technexion/tao3530/tao3530.c b/board/technexion/tao3530/tao3530.c
index cba48d4..4b61973 100644
--- a/board/technexion/tao3530/tao3530.c
+++ b/board/technexion/tao3530/tao3530.c
@@ -195,7 +195,7 @@ void board_mmc_power_init(void)
}
#endif
-#if defined(CONFIG_USB_EHCI) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_USB_EHCI_HCD) && !defined(CONFIG_SPL_BUILD)
/* Call usb_stop() before starting the kernel */
void show_boot_progress(int val)
{
@@ -219,4 +219,4 @@ int ehci_hcd_stop(int index)
{
return omap_ehci_hcd_stop();
}
-#endif /* CONFIG_USB_EHCI */
+#endif /* CONFIG_USB_EHCI_HCD */