This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / arm / mach-ixp4xx / coyote-setup.c
index 03ad0b7..bc6e0d0 100644 (file)
@@ -63,7 +63,7 @@ static struct resource coyote_flash_resource = {
        .flags          = IORESOURCE_MEM,
 };
 
-static struct platform_device coyote_flash = {
+static struct platform_device coyote_flash_device = {
        .name           = "IXP4XX-Flash",
        .id             = 0,
        .dev            = {
@@ -73,13 +73,9 @@ static struct platform_device coyote_flash = {
        .resource       = &coyote_flash_resource,
 };
 
-static struct platform_device *coyote_devices[] __initdata = {
-       &coyote_flash
-};
-
 static void __init coyote_init(void)
 {
-       platform_add_devices(&coyote_devices, ARRAY_SIZE(coyote_devices));
+       platform_add_device(&coyote_flash_device);
 }
 
 MACHINE_START(ADI_COYOTE, "ADI Engineering IXP4XX Coyote Development Platform")
@@ -88,7 +84,6 @@ MACHINE_START(ADI_COYOTE, "ADI Engineering IXP4XX Coyote Development Platform")
                 IXP4XX_PERIPHERAL_BASE_VIRT)
         MAPIO(coyote_map_io)
         INITIRQ(ixp4xx_init_irq)
-       INITTIME(ixp4xx_init_time)
         BOOT_PARAMS(0x0100)
        INIT_MACHINE(coyote_init)
 MACHINE_END