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-rpc | |
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-rpc')
-rw-r--r-- | arch/arm/mach-rpc/riscpc.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/arch/arm/mach-rpc/riscpc.c b/arch/arm/mach-rpc/riscpc.c index 437106881436..a10268618f74 100644 --- a/arch/arm/mach-rpc/riscpc.c +++ b/arch/arm/mach-rpc/riscpc.c | |||
@@ -163,12 +163,14 @@ arch_initcall(rpc_init); | |||
163 | extern struct sys_timer ioc_timer; | 163 | extern struct sys_timer ioc_timer; |
164 | 164 | ||
165 | MACHINE_START(RISCPC, "Acorn-RiscPC") | 165 | MACHINE_START(RISCPC, "Acorn-RiscPC") |
166 | MAINTAINER("Russell King") | 166 | /* Maintainer: Russell King */ |
167 | BOOT_MEM(0x10000000, 0x03000000, 0xe0000000) | 167 | .phys_ram = 0x10000000, |
168 | BOOT_PARAMS(0x10000100) | 168 | .phys_io = 0x03000000, |
169 | DISABLE_PARPORT(0) | 169 | .io_pg_offst = ((0xe0000000) >> 18) & 0xfffc, |
170 | DISABLE_PARPORT(1) | 170 | .boot_params = 0x10000100, |
171 | MAPIO(rpc_map_io) | 171 | .reserve_lp0 = 1, |
172 | INITIRQ(rpc_init_irq) | 172 | .reserve_lp1 = 1, |
173 | .map_io = rpc_map_io, | ||
174 | .init_irq = rpc_init_irq, | ||
173 | .timer = &ioc_timer, | 175 | .timer = &ioc_timer, |
174 | MACHINE_END | 176 | MACHINE_END |