diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:47 -0500 |
commit | 2bf2154c6bb5599e3ec3f73c34861a0b12aa839e (patch) | |
tree | 62691bd915e2e3c2e6648306d3fb893f7a1dc57e /arch/mips | |
parent | 08a4ecee986dd98e86090ff5faac4782b6765aed (diff) | |
parent | 71a8924bee63d891f6256d560e32416a458440b3 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6: (81 commits)
[PATCH] USB: omninet: fix up debugging comments
[PATCH] USB serial: add navman driver
[PATCH] USB: Fix irda-usb use after use
[PATCH] USB: rtl8150 small fix
[PATCH] USB: ftdi_sio: add Icom ID1 USB product and vendor ids
[PATCH] USB: cp2101: add new device IDs
[PATCH] USB: fix check_ctrlrecip to allow control transfers in state ADDRESS
[PATCH] USB: vicam.c: fix a NULL pointer dereference
[PATCH] USB: ZC0301 driver bugfix
[PATCH] USB: add support for Creativelabs Silvercrest USB keyboard
[PATCH] USB: storage: new unusual_devs.h entry: Mitsumi 7in1 Card Reader
[PATCH] USB: storage: unusual_devs.h entry 0420:0001
[PATCH] USB: storage: another unusual_devs.h entry
[PATCH] USB: storage: sandisk unusual_devices entry
[PATCH] USB: fix initdata issue in isp116x-hcd
[PATCH] USB: usbcore: usb_set_configuration oops (NULL ptr dereference)
[PATCH] USB: usbcore: Don't assume a USB configuration includes any interfaces
[PATCH] USB: ub 03 drop stall clearing
[PATCH] USB: ub 02 remove diag
[PATCH] USB: ub 01 remove first_open
...
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/au1000/common/cputable.c | 2 | ||||
-rw-r--r-- | arch/mips/au1000/common/platform.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/mips/au1000/common/cputable.c b/arch/mips/au1000/common/cputable.c index 4dbde82c8215..d8df5fdb045f 100644 --- a/arch/mips/au1000/common/cputable.c +++ b/arch/mips/au1000/common/cputable.c | |||
@@ -38,7 +38,7 @@ struct cpu_spec cpu_specs[] = { | |||
38 | { 0xffffffff, 0x02030204, "Au1100 BE", 0, 1 }, | 38 | { 0xffffffff, 0x02030204, "Au1100 BE", 0, 1 }, |
39 | { 0xffffffff, 0x03030200, "Au1550 AA", 0, 1 }, | 39 | { 0xffffffff, 0x03030200, "Au1550 AA", 0, 1 }, |
40 | { 0xffffffff, 0x04030200, "Au1200 AB", 0, 0 }, | 40 | { 0xffffffff, 0x04030200, "Au1200 AB", 0, 0 }, |
41 | { 0xffffffff, 0x04030201, "Au1200 AC", 0, 1 }, | 41 | { 0xffffffff, 0x04030201, "Au1200 AC", 1, 0 }, |
42 | { 0x00000000, 0x00000000, "Unknown Au1xxx", 1, 0 }, | 42 | { 0x00000000, 0x00000000, "Unknown Au1xxx", 1, 0 }, |
43 | }; | 43 | }; |
44 | 44 | ||
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index d7a8f0a811fe..32702e5fbf67 100644 --- a/arch/mips/au1000/common/platform.c +++ b/arch/mips/au1000/common/platform.c | |||
@@ -20,7 +20,7 @@ | |||
20 | static struct resource au1xxx_usb_ohci_resources[] = { | 20 | static struct resource au1xxx_usb_ohci_resources[] = { |
21 | [0] = { | 21 | [0] = { |
22 | .start = USB_OHCI_BASE, | 22 | .start = USB_OHCI_BASE, |
23 | .end = USB_OHCI_BASE + USB_OHCI_LEN, | 23 | .end = USB_OHCI_BASE + USB_OHCI_LEN - 1, |
24 | .flags = IORESOURCE_MEM, | 24 | .flags = IORESOURCE_MEM, |
25 | }, | 25 | }, |
26 | [1] = { | 26 | [1] = { |
@@ -278,9 +278,7 @@ static struct platform_device *au1xxx_platform_devices[] __initdata = { | |||
278 | &au1100_lcd_device, | 278 | &au1100_lcd_device, |
279 | #endif | 279 | #endif |
280 | #ifdef CONFIG_SOC_AU1200 | 280 | #ifdef CONFIG_SOC_AU1200 |
281 | #if 0 /* fixme */ | ||
282 | &au1xxx_usb_ehci_device, | 281 | &au1xxx_usb_ehci_device, |
283 | #endif | ||
284 | &au1xxx_usb_gdt_device, | 282 | &au1xxx_usb_gdt_device, |
285 | &au1xxx_usb_otg_device, | 283 | &au1xxx_usb_otg_device, |
286 | &au1200_lcd_device, | 284 | &au1200_lcd_device, |