[ixp4xx] move the latch-led driver into a separated patch
[openwrt.git] / target / linux / ixp4xx / patches-2.6.23 / 100-gateway7001_mac_plat_info.patch
1 Index: linux-2.6.23.17/arch/arm/mach-ixp4xx/gateway7001-setup.c
2 ===================================================================
3 --- linux-2.6.23.17.orig/arch/arm/mach-ixp4xx/gateway7001-setup.c
4 +++ linux-2.6.23.17/arch/arm/mach-ixp4xx/gateway7001-setup.c
5 @@ -76,9 +76,36 @@ static struct platform_device gateway700
6         .resource       = &gateway7001_uart_resource,
7  };
8  
9 +/* Built-in 10/100 Ethernet MAC interfaces */
10 +static struct eth_plat_info gateway7001_plat_eth[] = {
11 +        {
12 +                .phy            = 1,
13 +                .rxq            = 3,
14 +               .txreadyq       = 20,
15 +        }, {
16 +                .phy            = 2,
17 +                .rxq            = 4,
18 +               .txreadyq       = 21,
19 +       }
20 +};
21 +
22 +static struct platform_device gateway7001_eth[] = {
23 +        {
24 +                .name                   = "ixp4xx_eth",
25 +                .id                     = IXP4XX_ETH_NPEB,
26 +                .dev.platform_data      = gateway7001_plat_eth,
27 +        }, {
28 +                .name                   = "ixp4xx_eth",
29 +                .id                     = IXP4XX_ETH_NPEC,
30 +                .dev.platform_data      = gateway7001_plat_eth + 1,
31 +       }
32 +};
33 +
34  static struct platform_device *gateway7001_devices[] __initdata = {
35         &gateway7001_flash,
36 -       &gateway7001_uart
37 +       &gateway7001_uart,
38 +       &gateway7001_eth[0],
39 +       &gateway7001_eth[1],
40  };
41  
42  static void __init gateway7001_init(void)