mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:50:18 +02:00
6a4f0ff0d7
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31698 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
821 B
Diff
25 lines
821 B
Diff
--- a/arch/arm/mach-gemini/board-wbd111.c
|
|
+++ b/arch/arm/mach-gemini/board-wbd111.c
|
|
@@ -149,6 +149,7 @@ static void __init wbd111_init(void)
|
|
platform_register_watchdog();
|
|
platform_device_register(&wbd111_phy_device);
|
|
platform_register_ethernet(&gmac_data);
|
|
+ platform_register_usb(0);
|
|
}
|
|
|
|
MACHINE_START(WBD111, "Wiliboard WBD-111")
|
|
--- a/drivers/usb/host/ehci-hcd.c
|
|
+++ b/drivers/usb/host/ehci-hcd.c
|
|
@@ -112,7 +112,11 @@ module_param (park, uint, S_IRUGO);
|
|
MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
|
|
|
|
/* for flakey hardware, ignore overcurrent indicators */
|
|
+#ifdef CONFIG_ARCH_GEMINI
|
|
+static bool ignore_oc = 1;
|
|
+#else
|
|
static bool ignore_oc = 0;
|
|
+#endif
|
|
module_param (ignore_oc, bool, S_IRUGO);
|
|
MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
|
|
|