mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45273 3c298f89-4303-0410-b956-a3cf2f4a3e73
29 lines
697 B
Diff
29 lines
697 B
Diff
--- a/drivers/usb/host/ehci-hcd.c
|
|
+++ b/drivers/usb/host/ehci-hcd.c
|
|
@@ -1298,6 +1298,11 @@ MODULE_LICENSE ("GPL");
|
|
#define PLATFORM_DRIVER ehci_hcd_sead3_driver
|
|
#endif
|
|
|
|
+#ifdef CONFIG_ARCH_MCS814X
|
|
+#include "ehci-mcs814x.c"
|
|
+#define PLATFORM_DRIVER mcs814x_ehci_driver
|
|
+#endif
|
|
+
|
|
static int __init ehci_hcd_init(void)
|
|
{
|
|
int retval = 0;
|
|
--- a/drivers/usb/host/ohci-hcd.c
|
|
+++ b/drivers/usb/host/ohci-hcd.c
|
|
@@ -1259,6 +1259,11 @@ MODULE_LICENSE ("GPL");
|
|
#define PLATFORM_DRIVER ohci_hcd_tilegx_driver
|
|
#endif
|
|
|
|
+#ifdef CONFIG_ARCH_MCS814X
|
|
+#include "ohci-mcs814x.c"
|
|
+#define PLATFORM_DRIVER ohci_hcd_mcs814x_driver
|
|
+#endif
|
|
+
|
|
static int __init ohci_hcd_mod_init(void)
|
|
{
|
|
int retval = 0;
|