diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2012-07-21 06:58:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 17:00:37 -0400 |
commit | 100d45970327f78584ff4846deeca14bba511e28 (patch) | |
tree | 3698827ac9c75aa66d461fd9862b7fcef4768e94 /drivers/usb/host/uhci-hcd.c | |
parent | 8ad551d150e3bb0902696496a9d2aa094335705a (diff) |
ARM: vt8500: Add support for UHCI companion controller
Add support for a generic non-pci UHCI companion controller.
Existing board files for arch-vt8500 updated to include UHCI
support.
Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/uhci-hcd.c')
-rw-r--r-- | drivers/usb/host/uhci-hcd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index e4db350602b8..4b9e9aba2665 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -846,6 +846,11 @@ static const char hcd_name[] = "uhci_hcd"; | |||
846 | #define PLATFORM_DRIVER uhci_grlib_driver | 846 | #define PLATFORM_DRIVER uhci_grlib_driver |
847 | #endif | 847 | #endif |
848 | 848 | ||
849 | #ifdef CONFIG_USB_UHCI_PLATFORM | ||
850 | #include "uhci-platform.c" | ||
851 | #define PLATFORM_DRIVER uhci_platform_driver | ||
852 | #endif | ||
853 | |||
849 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) | 854 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) |
850 | #error "missing bus glue for uhci-hcd" | 855 | #error "missing bus glue for uhci-hcd" |
851 | #endif | 856 | #endif |