diff options
Diffstat (limited to 'arch/mips/au1000/common/platform.c')
-rw-r--r-- | arch/mips/au1000/common/platform.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index 48d3f54f88f8..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] = { |
@@ -264,7 +264,7 @@ static struct resource smc91x_resources[] = { | |||
264 | 264 | ||
265 | static struct platform_device smc91x_device = { | 265 | static struct platform_device smc91x_device = { |
266 | .name = "smc91x", | 266 | .name = "smc91x", |
267 | .id = -1, | 267 | .id = -1, |
268 | .num_resources = ARRAY_SIZE(smc91x_resources), | 268 | .num_resources = ARRAY_SIZE(smc91x_resources), |
269 | .resource = smc91x_resources, | 269 | .resource = smc91x_resources, |
270 | }; | 270 | }; |
@@ -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, |
@@ -288,7 +286,7 @@ static struct platform_device *au1xxx_platform_devices[] __initdata = { | |||
288 | &au1xxx_mmc_device, | 286 | &au1xxx_mmc_device, |
289 | #endif | 287 | #endif |
290 | #ifdef CONFIG_MIPS_DB1200 | 288 | #ifdef CONFIG_MIPS_DB1200 |
291 | &smc91x_device, | 289 | &smc91x_device, |
292 | #endif | 290 | #endif |
293 | }; | 291 | }; |
294 | 292 | ||