1 diff -Nur linux-2.6.21.1/arch/arm/mach-ixp4xx/pronghornmetro-setup.c linux-2.6.21.1-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
2 --- linux-2.6.21.1/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-06-10 14:31:27.000000000 +0200
3 +++ linux-2.6.21.1-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-06-10 14:36:23.000000000 +0200
5 .resource = &pronghornmetro_uart_resource,
8 +static struct resource pronghornmetro_pata_resources[] = {
10 + .flags = IORESOURCE_MEM
13 + .flags = IORESOURCE_MEM,
17 + .start = IRQ_IXP4XX_GPIO0,
18 + .end = IRQ_IXP4XX_GPIO0,
19 + .flags = IORESOURCE_IRQ,
23 +static struct ixp4xx_pata_data pronghornmetro_pata_data = {
24 + .cs0_bits = 0xbfff0043,
25 + .cs1_bits = 0xbfff0043,
28 +static struct platform_device pronghornmetro_pata = {
29 + .name = "pata_ixp4xx_cf",
31 + .dev.platform_data = &pronghornmetro_pata_data,
32 + .num_resources = ARRAY_SIZE(pronghornmetro_pata_resources),
33 + .resource = pronghornmetro_pata_resources,
37 static struct resource res_mac0 = {
38 .start = IXP4XX_EthB_BASE_PHYS,
39 .end = IXP4XX_EthB_BASE_PHYS + 0x1ff,
42 platform_add_devices(pronghornmetro_devices, ARRAY_SIZE(pronghornmetro_devices));
44 + pronghornmetro_pata_resources[0].start = IXP4XX_EXP_BUS_BASE(1);
45 + pronghornmetro_pata_resources[0].end = IXP4XX_EXP_BUS_END(1);
47 + pronghornmetro_pata_resources[1].start = IXP4XX_EXP_BUS_BASE(2);
48 + pronghornmetro_pata_resources[1].end = IXP4XX_EXP_BUS_END(2);
50 + pronghornmetro_pata_data.cs0_cfg = IXP4XX_EXP_CS1;
51 + pronghornmetro_pata_data.cs1_cfg = IXP4XX_EXP_CS2;
53 + platform_device_register(&pronghornmetro_pata);
55 register_mtd_user(&pronghornmetro_flash_notifier);