diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-11-01 17:03:27 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-11-01 17:03:27 -0400 |
commit | 63c845522263b2da08f70deba760ed0ab51e841d (patch) | |
tree | 6abb296e5f92b385b88d97e167e2ed331c36548d /drivers/usb/host/ehci-hcd.c | |
parent | 9cc563968066b55b067bcff132e4d566b020687d (diff) | |
download | linux-stable-63c845522263b2da08f70deba760ed0ab51e841d.tar.gz linux-stable-63c845522263b2da08f70deba760ed0ab51e841d.tar.bz2 linux-stable-63c845522263b2da08f70deba760ed0ab51e841d.zip |
usb: ehci-hcd: Add support for SuperH EHCI.
This adds a trivial stub for supporting EHCI mode of the on-chip
SH USB host controllers.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
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 502a7e6fef42..02ffbea0c8fa 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -1166,6 +1166,11 @@ MODULE_LICENSE ("GPL"); #define PLATFORM_DRIVER ehci_mxc_driver #endif +#ifdef CONFIG_CPU_SUBTYPE_SH7786 +#include "ehci-sh.c" +#define PLATFORM_DRIVER ehci_hcd_sh_driver +#endif + #ifdef CONFIG_SOC_AU1200 #include "ehci-au1xxx.c" #define PLATFORM_DRIVER ehci_hcd_au1xxx_driver |