1 Index: linux-2.6.19/arch/arm/mach-ixp4xx/nslu2-setup.c
2 ===================================================================
3 --- linux-2.6.19.orig/arch/arm/mach-ixp4xx/nslu2-setup.c
4 +++ linux-2.6.19/arch/arm/mach-ixp4xx/nslu2-setup.c
5 @@ -137,6 +137,29 @@ static struct platform_device nslu2_uart
6 .resource = nslu2_uart_resources,
9 +static struct resource res_mac0 = {
10 + .start = IXP4XX_EthB_BASE_PHYS,
11 + .end = IXP4XX_EthB_BASE_PHYS + 0x1ff,
12 + .flags = IORESOURCE_MEM,
15 +static struct mac_plat_info plat_mac0 = {
24 +static struct platform_device mac0 = {
25 + .name = "ixp4xx_mac",
27 + .dev.platform_data = &plat_mac0,
29 + .resource = &res_mac0,
32 static struct platform_device *nslu2_devices[] __initdata = {
33 &nslu2_i2c_controller,
35 @@ -144,6 +166,7 @@ static struct platform_device *nslu2_dev
36 #ifdef CONFIG_LEDS_IXP4XX
42 static void nslu2_power_off(void)