diff options
author | Wolfgang Grandegger <wg@denx.de> | 2011-11-11 14:03:36 +0100 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2011-12-11 14:49:31 +0100 |
commit | 1ca56202532395f26fc59a87e62c9cab1541f9f3 (patch) | |
tree | 8c45f9927def3111f9982ea04791bc443eb682de /drivers/usb/host/Makefile | |
parent | 5d2947a3fc8d130cfa39fccdefb87082abbf0e9b (diff) | |
download | u-boot-imx-1ca56202532395f26fc59a87e62c9cab1541f9f3.zip u-boot-imx-1ca56202532395f26fc59a87e62c9cab1541f9f3.tar.gz u-boot-imx-1ca56202532395f26fc59a87e62c9cab1541f9f3.tar.bz2 |
USB: MX5: add generic USB EHCI support for mx51 and mx53
It's derived from ehci-mxc and uses the header files of the
ehci-fsl interface. The callback board_ehci_hcd_init() has
been introduced to allow for board-specific setup when USB
is started.
Signed-off-by: Wolfgang Grandegger <wg@denx.de>
CC: Stefano Babic <sbabic@denx.de>
CC: Remy Bohmer <linux@bohmer.net>
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 09abb75..77e217f 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile @@ -42,6 +42,7 @@ COBJS-$(CONFIG_USB_EHCI_FSL) += ehci-fsl.o endif COBJS-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o COBJS-$(CONFIG_USB_EHCI_MXS) += ehci-mxs.o +COBJS-$(CONFIG_USB_EHCI_MX5) += ehci-mx5.o COBJS-$(CONFIG_USB_EHCI_PPC4XX) += ehci-ppc4xx.o COBJS-$(CONFIG_USB_EHCI_IXP4XX) += ehci-ixp.o COBJS-$(CONFIG_USB_EHCI_KIRKWOOD) += ehci-kirkwood.o |