1 --- a/arch/arm/mach-ixp4xx/avila-setup.c
2 +++ b/arch/arm/mach-ixp4xx/avila-setup.c
4 .resource = avila_pata_resources,
7 +/* Built-in 10/100 Ethernet MAC interfaces */
8 +static struct eth_plat_info avila_npeb_data = {
14 +static struct eth_plat_info avila_npec_data = {
20 +static struct platform_device avila_npeb_device = {
21 + .name = "ixp4xx_eth",
22 + .id = IXP4XX_ETH_NPEB,
23 + .dev.platform_data = &avila_npeb_data,
26 +static struct platform_device avila_npec_device = {
27 + .name = "ixp4xx_eth",
28 + .id = IXP4XX_ETH_NPEC,
29 + .dev.platform_data = &avila_npec_data,
32 static struct platform_device *avila_devices[] __initdata = {
37 platform_device_register(&avila_pata);
39 + platform_device_register(avila_npeb_device);
40 + platform_device_register(avila_npec_device);
43 MACHINE_START(AVILA, "Gateworks Avila Network Platform")