diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2015-12-02 12:32:02 +0300 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-07 00:14:59 +0100 |
commit | 90fbb2823ac6c2deeab6123aa8f8f32408779e64 (patch) | |
tree | 6427d2d8f94120df0c035faed65d9108e19a712e /drivers/usb/host/Makefile | |
parent | 40c920821d0cbe6a243aa358187aa024c0c1ad5f (diff) | |
download | u-boot-imx-90fbb2823ac6c2deeab6123aa8f8f32408779e64.zip u-boot-imx-90fbb2823ac6c2deeab6123aa8f8f32408779e64.tar.gz u-boot-imx-90fbb2823ac6c2deeab6123aa8f8f32408779e64.tar.bz2 |
usb: add support for generic EHCI devices
This driver is meant to be used with any EHCI-compatible host
controller in case if there's no need for platform-specific
glue such as setup of controller or PHY's power mode via
GPIOs etc.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Stephen Warren <swarren@nvidia.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb/host/Makefile')
-rw-r--r-- | drivers/usb/host/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index 645b990..0b4b458 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile @@ -32,6 +32,7 @@ else obj-$(CONFIG_USB_EHCI_FSL) += ehci-fsl.o endif obj-$(CONFIG_USB_EHCI_FARADAY) += ehci-faraday.o +obj-$(CONFIG_USB_EHCI_GENERIC) += ehci-generic.o obj-$(CONFIG_USB_EHCI_EXYNOS) += ehci-exynos.o obj-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o obj-$(CONFIG_USB_EHCI_MXS) += ehci-mxs.o |