add usb support for the wbd111, refresh patches
SVN-Revision: 25820
This commit is contained in:
parent
7b44be03d8
commit
0e4c9de00e
2 changed files with 23 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
static struct gpio_keys_button wbd111_keys[] = {
|
||||
{
|
||||
.code = KEY_SETUP,
|
||||
@@ -131,6 +151,8 @@
|
||||
@@ -131,6 +151,8 @@ static void __init wbd111_init(void)
|
||||
wbd111_num_partitions);
|
||||
platform_device_register(&wbd111_leds_device);
|
||||
platform_device_register(&wbd111_keys_device);
|
||||
|
@ -73,7 +73,7 @@
|
|||
static struct gpio_keys_button wbd222_keys[] = {
|
||||
{
|
||||
.code = KEY_SETUP,
|
||||
@@ -131,6 +153,10 @@
|
||||
@@ -131,6 +153,10 @@ static void __init wbd222_init(void)
|
||||
wbd222_num_partitions);
|
||||
platform_device_register(&wbd222_leds_device);
|
||||
platform_device_register(&wbd222_keys_device);
|
||||
|
|
21
target/linux/gemini/patches/006-wbd111_usb.patch
Normal file
21
target/linux/gemini/patches/006-wbd111_usb.patch
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- a/arch/arm/mach-gemini/board-wbd111.c
|
||||
+++ b/arch/arm/mach-gemini/board-wbd111.c
|
||||
@@ -147,6 +147,7 @@ static void __init wbd111_init(void)
|
||||
gemini_gpio_init();
|
||||
platform_register_uart();
|
||||
platform_register_watchdog();
|
||||
+ platform_register_usb(0);
|
||||
platform_register_pflash(SZ_8M, wbd111_partitions,
|
||||
wbd111_num_partitions);
|
||||
platform_device_register(&wbd111_leds_device);
|
||||
--- a/drivers/usb/host/ehci-hcd.c
|
||||
+++ b/drivers/usb/host/ehci-hcd.c
|
||||
@@ -103,7 +103,7 @@ 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 */
|
||||
-static int ignore_oc = 0;
|
||||
+static int ignore_oc = 1;
|
||||
module_param (ignore_oc, bool, S_IRUGO);
|
||||
MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
|
||||
|
Loading…
Reference in a new issue