[kernel] update to 2.6.25.1 and refresh patches
[openwrt/svn-archive/archive.git] / target / linux / ixp4xx / patches-2.6.25 / 131-wrt300nv2_mac_plat_info.patch
1 Index: linux-2.6.25.1/arch/arm/mach-ixp4xx/wrt300nv2-setup.c
2 ===================================================================
3 --- linux-2.6.25.1.orig/arch/arm/mach-ixp4xx/wrt300nv2-setup.c
4 +++ linux-2.6.25.1/arch/arm/mach-ixp4xx/wrt300nv2-setup.c
5 @@ -76,9 +76,36 @@ static struct platform_device wrt300nv2_
6 .resource = &wrt300nv2_uart_resource,
7 };
8
9 +/* Built-in 10/100 Ethernet MAC interfaces */
10 +static struct eth_plat_info wrt300nv2_plat_eth[] = {
11 + {
12 + .phy = -1,
13 + .rxq = 3,
14 + .txreadyq = 20,
15 + }, {
16 + .phy = 1,
17 + .rxq = 4,
18 + .txreadyq = 21,
19 + }
20 +};
21 +
22 +static struct platform_device wrt300nv2_eth[] = {
23 + {
24 + .name = "ixp4xx_eth",
25 + .id = IXP4XX_ETH_NPEB,
26 + .dev.platform_data = wrt300nv2_plat_eth,
27 + }, {
28 + .name = "ixp4xx_eth",
29 + .id = IXP4XX_ETH_NPEC,
30 + .dev.platform_data = wrt300nv2_plat_eth + 1,
31 + }
32 +};
33 +
34 static struct platform_device *wrt300nv2_devices[] __initdata = {
35 &wrt300nv2_flash,
36 - &wrt300nv2_uart
37 + &wrt300nv2_uart,
38 + &wrt300nv2_eth[0],
39 + &wrt300nv2_eth[1],
40 };
41
42 static void __init wrt300nv2_init(void)