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-orion5x/kurobox_pro-setup.c | |
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-orion5x/kurobox_pro-setup.c')
-rw-r--r-- | arch/arm/mach-orion5x/kurobox_pro-setup.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/mach-orion5x/kurobox_pro-setup.c b/arch/arm/mach-orion5x/kurobox_pro-setup.c index dfbb68df7b0..4be9aa08de6 100644 --- a/arch/arm/mach-orion5x/kurobox_pro-setup.c +++ b/arch/arm/mach-orion5x/kurobox_pro-setup.c | |||
@@ -379,8 +379,6 @@ static void __init kurobox_pro_init(void) | |||
379 | #ifdef CONFIG_MACH_KUROBOX_PRO | 379 | #ifdef CONFIG_MACH_KUROBOX_PRO |
380 | MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro") | 380 | MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro") |
381 | /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */ | 381 | /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */ |
382 | .phys_io = ORION5X_REGS_PHYS_BASE, | ||
383 | .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC, | ||
384 | .boot_params = 0x00000100, | 382 | .boot_params = 0x00000100, |
385 | .init_machine = kurobox_pro_init, | 383 | .init_machine = kurobox_pro_init, |
386 | .map_io = orion5x_map_io, | 384 | .map_io = orion5x_map_io, |
@@ -393,8 +391,6 @@ MACHINE_END | |||
393 | #ifdef CONFIG_MACH_LINKSTATION_PRO | 391 | #ifdef CONFIG_MACH_LINKSTATION_PRO |
394 | MACHINE_START(LINKSTATION_PRO, "Buffalo Linkstation Pro/Live") | 392 | MACHINE_START(LINKSTATION_PRO, "Buffalo Linkstation Pro/Live") |
395 | /* Maintainer: Byron Bradley <byron.bbradley@gmail.com> */ | 393 | /* Maintainer: Byron Bradley <byron.bbradley@gmail.com> */ |
396 | .phys_io = ORION5X_REGS_PHYS_BASE, | ||
397 | .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC, | ||
398 | .boot_params = 0x00000100, | 394 | .boot_params = 0x00000100, |
399 | .init_machine = kurobox_pro_init, | 395 | .init_machine = kurobox_pro_init, |
400 | .map_io = orion5x_map_io, | 396 | .map_io = orion5x_map_io, |