This patch removes references to the Gateworks Avila Network Platform in the ixdp425 setup code. Avila setup should occur separately now that a CF ATA device driver is available. Signed-off-by: Michael-Luke Jones Index: linux-2.6.20-rc1/arch/arm/mach-ixp4xx/ixdp425-pci.c =================================================================== --- linux-2.6.20-rc1.orig/arch/arm/mach-ixp4xx/ixdp425-pci.c 2006-12-15 10:10:13.095933214 +0000 +++ linux-2.6.20-rc1/arch/arm/mach-ixp4xx/ixdp425-pci.c 2006-12-15 10:10:23.796601963 +0000 @@ -66,7 +66,7 @@ int __init ixdp425_pci_init(void) { if (machine_is_ixdp425() || machine_is_ixcdp1100() || - machine_is_avila() || machine_is_ixdp465()) + machine_is_ixdp465()) pci_common_init(&ixdp425_pci); return 0; } Index: linux-2.6.20-rc1/arch/arm/mach-ixp4xx/ixdp425-setup.c =================================================================== --- linux-2.6.20-rc1.orig/arch/arm/mach-ixp4xx/ixdp425-setup.c 2006-12-15 10:10:13.123934965 +0000 +++ linux-2.6.20-rc1/arch/arm/mach-ixp4xx/ixdp425-setup.c 2006-12-15 10:10:23.796601963 +0000 @@ -156,23 +156,3 @@ .init_machine = ixdp425_init, MACHINE_END #endif - -/* - * Avila is functionally equivalent to IXDP425 except that it adds - * a CF IDE slot hanging off the expansion bus. When we have a - * driver for IXP4xx CF IDE with driver model support we'll move - * Avila to it's own setup file. - */ -#ifdef CONFIG_ARCH_AVILA -MACHINE_START(AVILA, "Gateworks Avila Network Platform") - /* Maintainer: Deepak Saxena */ - .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS, - .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc, - .map_io = ixp4xx_map_io, - .init_irq = ixp4xx_init_irq, - .timer = &ixp4xx_timer, - .boot_params = 0x0100, - .init_machine = ixdp425_init, -MACHINE_END -#endif -