diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2010-10-14 22:21:46 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2010-10-20 00:27:46 -0400 |
commit | 6451d7783ba5ff24eb1a544eaa6665b890f30466 (patch) | |
tree | 78651bbbed163fe933cd42deabebad682d7c03dc /arch/arm/mach-ux500 | |
parent | c293393faa8e11a5a80a9e358718432b8697f451 (diff) |
arm: remove machine_desc.io_pg_offst and .phys_io
Since we're now using addruart to establish the debug mapping, we can
remove the io_pg_offst and phys_io members of struct machine_desc.
The various declarations were removed using the following script:
grep -rl MACHINE_START arch/arm | xargs \
sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'
[ Initial patch was from Jeremy Kerr, example script from Russell King ]
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Acked-by: Eric Miao <eric.miao at canonical.com>
Diffstat (limited to 'arch/arm/mach-ux500')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ux500/board-u5500.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 642b8e60d119..4fb23e2e2cd5 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c | |||
@@ -195,8 +195,6 @@ static void __init u8500_init_machine(void) | |||
195 | 195 | ||
196 | MACHINE_START(U8500, "ST-Ericsson MOP500 platform") | 196 | MACHINE_START(U8500, "ST-Ericsson MOP500 platform") |
197 | /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> */ | 197 | /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> */ |
198 | .phys_io = U8500_UART2_BASE, | ||
199 | .io_pg_offst = (IO_ADDRESS(U8500_UART2_BASE) >> 18) & 0xfffc, | ||
200 | .boot_params = 0x100, | 198 | .boot_params = 0x100, |
201 | .map_io = u8500_map_io, | 199 | .map_io = u8500_map_io, |
202 | .init_irq = ux500_init_irq, | 200 | .init_irq = ux500_init_irq, |
diff --git a/arch/arm/mach-ux500/board-u5500.c b/arch/arm/mach-ux500/board-u5500.c index 4430e69cf538..1ca094a45e71 100644 --- a/arch/arm/mach-ux500/board-u5500.c +++ b/arch/arm/mach-ux500/board-u5500.c | |||
@@ -31,8 +31,6 @@ static void __init u5500_init_machine(void) | |||
31 | } | 31 | } |
32 | 32 | ||
33 | MACHINE_START(U8500, "ST-Ericsson U5500 Platform") | 33 | MACHINE_START(U8500, "ST-Ericsson U5500 Platform") |
34 | .phys_io = UX500_UART0_BASE, | ||
35 | .io_pg_offst = (IO_ADDRESS(UX500_UART0_BASE) >> 18) & 0xfffc, | ||
36 | .boot_params = 0x00000100, | 34 | .boot_params = 0x00000100, |
37 | .map_io = u5500_map_io, | 35 | .map_io = u5500_map_io, |
38 | .init_irq = ux500_init_irq, | 36 | .init_irq = ux500_init_irq, |