diff options
author | Tzachi Perelstein <tzachi@marvell.com> | 2007-12-01 11:07:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-01 17:34:58 -0500 |
commit | e96ffe2f9debd5fdc53144259d9e5faa514736b9 (patch) | |
tree | e29bdc60a35cf7a0efa301950584d6c9463d6bbc /drivers/usb/host/ehci-hcd.c | |
parent | f570728f89c9d4b262f7c180e5a8e230e675af0c (diff) |
USB: add Marvell Orion USB host support
Some glue bits for the on-chip USB host controller in the Marvell Orion
family of ARM SoCs, which is basically EHCI compatible.
Signed-off-by: Tzachi Perelstein <tzachi@marvell.com>
Reviewed-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ehci-hcd.c')
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index fb2b227afc4f..7c5c8796d175 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -998,6 +998,11 @@ MODULE_LICENSE ("GPL"); | |||
998 | #define PLATFORM_DRIVER ehci_ppc_soc_driver | 998 | #define PLATFORM_DRIVER ehci_ppc_soc_driver |
999 | #endif | 999 | #endif |
1000 | 1000 | ||
1001 | #ifdef CONFIG_ARCH_ORION | ||
1002 | #include "ehci-orion.c" | ||
1003 | #define PLATFORM_DRIVER ehci_orion_driver | ||
1004 | #endif | ||
1005 | |||
1001 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ | 1006 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ |
1002 | !defined(PS3_SYSTEM_BUS_DRIVER) | 1007 | !defined(PS3_SYSTEM_BUS_DRIVER) |
1003 | #error "missing bus glue for ehci-hcd" | 1008 | #error "missing bus glue for ehci-hcd" |