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-footbridge/cats-hw.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-footbridge/cats-hw.c')
-rw-r--r-- | arch/arm/mach-footbridge/cats-hw.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/arch/arm/mach-footbridge/cats-hw.c b/arch/arm/mach-footbridge/cats-hw.c index d1ced86c379c..49b898af0032 100644 --- a/arch/arm/mach-footbridge/cats-hw.c +++ b/arch/arm/mach-footbridge/cats-hw.c | |||
@@ -84,12 +84,14 @@ fixup_cats(struct machine_desc *desc, struct tag *tags, | |||
84 | } | 84 | } |
85 | 85 | ||
86 | MACHINE_START(CATS, "Chalice-CATS") | 86 | MACHINE_START(CATS, "Chalice-CATS") |
87 | MAINTAINER("Philip Blundell") | 87 | /* Maintainer: Philip Blundell */ |
88 | BOOT_MEM(0x00000000, DC21285_ARMCSR_BASE, 0xfe000000) | 88 | .phys_ram = 0x00000000, |
89 | BOOT_PARAMS(0x00000100) | 89 | .phys_io = DC21285_ARMCSR_BASE, |
90 | SOFT_REBOOT | 90 | .io_pg_offst = ((0xfe000000) >> 18) & 0xfffc, |
91 | FIXUP(fixup_cats) | 91 | .boot_params = 0x00000100, |
92 | MAPIO(footbridge_map_io) | 92 | .soft_reboot = 1, |
93 | INITIRQ(footbridge_init_irq) | 93 | .fixup = fixup_cats, |
94 | .map_io = footbridge_map_io, | ||
95 | .init_irq = footbridge_init_irq, | ||
94 | .timer = &isa_timer, | 96 | .timer = &isa_timer, |
95 | MACHINE_END | 97 | MACHINE_END |