diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-07-03 12:38:58 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-03 12:38:58 -0400 |
commit | e9dea0c65d2de6981356c055781fb99d7191b14e (patch) | |
tree | 106e6302238f561e679e479584095d49fe5c66fd /arch/arm/mach-ebsa110 | |
parent | 1d6bebf2ecf92924492c491d9c3a72edba95f907 (diff) |
[PATCH] ARM: Remove machine description macros
Remove the pointless machine description macros, favouring C99
initialisers instead.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ebsa110')
-rw-r--r-- | arch/arm/mach-ebsa110/core.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/arch/arm/mach-ebsa110/core.c b/arch/arm/mach-ebsa110/core.c index 86ffdbb5626e..23c4da10101b 100644 --- a/arch/arm/mach-ebsa110/core.c +++ b/arch/arm/mach-ebsa110/core.c | |||
@@ -233,13 +233,15 @@ static int __init ebsa110_init(void) | |||
233 | arch_initcall(ebsa110_init); | 233 | arch_initcall(ebsa110_init); |
234 | 234 | ||
235 | MACHINE_START(EBSA110, "EBSA110") | 235 | MACHINE_START(EBSA110, "EBSA110") |
236 | MAINTAINER("Russell King") | 236 | /* Maintainer: Russell King */ |
237 | BOOT_MEM(0x00000000, 0xe0000000, 0xe0000000) | 237 | .phys_ram = 0x00000000, |
238 | BOOT_PARAMS(0x00000400) | 238 | .phys_io = 0xe0000000, |
239 | DISABLE_PARPORT(0) | 239 | .io_pg_offst = ((0xe0000000) >> 18) & 0xfffc, |
240 | DISABLE_PARPORT(2) | 240 | .boot_params = 0x00000400, |
241 | SOFT_REBOOT | 241 | .reserve_lp0 = 1, |
242 | MAPIO(ebsa110_map_io) | 242 | .reserve_lp2 = 1, |
243 | INITIRQ(ebsa110_init_irq) | 243 | .soft_reboot = 1, |
244 | .map_io = ebsa110_map_io, | ||
245 | .init_irq = ebsa110_init_irq, | ||
244 | .timer = &ebsa110_timer, | 246 | .timer = &ebsa110_timer, |
245 | MACHINE_END | 247 | MACHINE_END |