diff options
Diffstat (limited to 'arch/arm/mach-ixp2000/enp2611.c')
-rw-r--r-- | arch/arm/mach-ixp2000/enp2611.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/arch/arm/mach-ixp2000/enp2611.c b/arch/arm/mach-ixp2000/enp2611.c index f3a291b6a9fb..9aa54de44740 100644 --- a/arch/arm/mach-ixp2000/enp2611.c +++ b/arch/arm/mach-ixp2000/enp2611.c | |||
@@ -219,17 +219,20 @@ static struct platform_device *enp2611_devices[] __initdata = { | |||
219 | static void __init enp2611_init_machine(void) | 219 | static void __init enp2611_init_machine(void) |
220 | { | 220 | { |
221 | platform_add_devices(enp2611_devices, ARRAY_SIZE(enp2611_devices)); | 221 | platform_add_devices(enp2611_devices, ARRAY_SIZE(enp2611_devices)); |
222 | ixp2000_uart_init(); | ||
222 | } | 223 | } |
223 | 224 | ||
224 | 225 | ||
225 | MACHINE_START(ENP2611, "Radisys ENP-2611 PCI network processor board") | 226 | MACHINE_START(ENP2611, "Radisys ENP-2611 PCI network processor board") |
226 | MAINTAINER("Lennert Buytenhek <buytenh@wantstofly.org>") | 227 | /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */ |
227 | BOOT_MEM(0x00000000, IXP2000_UART_PHYS_BASE, IXP2000_UART_VIRT_BASE) | 228 | .phys_ram = 0x00000000, |
228 | BOOT_PARAMS(0x00000100) | 229 | .phys_io = IXP2000_UART_PHYS_BASE, |
229 | MAPIO(ixp2000_map_io) | 230 | .io_pg_offst = ((IXP2000_UART_VIRT_BASE) >> 18) & 0xfffc, |
230 | INITIRQ(ixp2000_init_irq) | 231 | .boot_params = 0x00000100, |
232 | .map_io = ixp2000_map_io, | ||
233 | .init_irq = ixp2000_init_irq, | ||
231 | .timer = &enp2611_timer, | 234 | .timer = &enp2611_timer, |
232 | INIT_MACHINE(enp2611_init_machine) | 235 | .init_machine = enp2611_init_machine, |
233 | MACHINE_END | 236 | MACHINE_END |
234 | 237 | ||
235 | 238 | ||