diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-04-13 04:54:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-13 19:58:19 -0400 |
commit | 90e6ca5cda8a38b7bb53660e67eff0845c0abe3f (patch) | |
tree | dd55be04d3d14ebc717c033dcda244b3fa6bad05 /drivers/usb/host/ohci-hcd.c | |
parent | 2f7ac6c199978d0a0e407a12534201aa675a6482 (diff) |
USB: ohci: add bus glue for the Atheros AR71XX/AR7240 SoCs
The Atheros AR71XX/AR7240 SoCs have a built-in OHCI controller.
This patch adds the necessary glue code to make the generic OHCI
driver usable for them.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
Cc: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ohci-hcd.c')
-rw-r--r-- | drivers/usb/host/ohci-hcd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index d55723514860..8c8dc6559ac7 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
@@ -1105,6 +1105,11 @@ MODULE_LICENSE ("GPL"); | |||
1105 | #define PLATFORM_DRIVER ohci_hcd_cns3xxx_driver | 1105 | #define PLATFORM_DRIVER ohci_hcd_cns3xxx_driver |
1106 | #endif | 1106 | #endif |
1107 | 1107 | ||
1108 | #ifdef CONFIG_USB_OHCI_ATH79 | ||
1109 | #include "ohci-ath79.c" | ||
1110 | #define PLATFORM_DRIVER ohci_hcd_ath79_driver | ||
1111 | #endif | ||
1112 | |||
1108 | #if !defined(PCI_DRIVER) && \ | 1113 | #if !defined(PCI_DRIVER) && \ |
1109 | !defined(PLATFORM_DRIVER) && \ | 1114 | !defined(PLATFORM_DRIVER) && \ |
1110 | !defined(OMAP1_PLATFORM_DRIVER) && \ | 1115 | !defined(OMAP1_PLATFORM_DRIVER) && \ |