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-omap/board-h3.c | |
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-omap/board-h3.c')
-rw-r--r-- | arch/arm/mach-omap/board-h3.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/arch/arm/mach-omap/board-h3.c b/arch/arm/mach-omap/board-h3.c index 486a5a006c9a..705e48594e9a 100644 --- a/arch/arm/mach-omap/board-h3.c +++ b/arch/arm/mach-omap/board-h3.c | |||
@@ -195,11 +195,13 @@ static void __init h3_map_io(void) | |||
195 | } | 195 | } |
196 | 196 | ||
197 | MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board") | 197 | MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board") |
198 | MAINTAINER("Texas Instruments, Inc.") | 198 | /* Maintainer: Texas Instruments, Inc. */ |
199 | BOOT_MEM(0x10000000, 0xfff00000, 0xfef00000) | 199 | .phys_ram = 0x10000000, |
200 | BOOT_PARAMS(0x10000100) | 200 | .phys_io = 0xfff00000, |
201 | MAPIO(h3_map_io) | 201 | .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc, |
202 | INITIRQ(h3_init_irq) | 202 | .boot_params = 0x10000100, |
203 | INIT_MACHINE(h3_init) | 203 | .map_io = h3_map_io, |
204 | .init_irq = h3_init_irq, | ||
205 | .init_machine = h3_init, | ||
204 | .timer = &omap_timer, | 206 | .timer = &omap_timer, |
205 | MACHINE_END | 207 | MACHINE_END |