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-ixp23xx | |
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-ixp23xx')
-rw-r--r-- | arch/arm/mach-ixp23xx/espresso.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ixp23xx/ixdp2351.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ixp23xx/roadrunner.c | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/mach-ixp23xx/espresso.c b/arch/arm/mach-ixp23xx/espresso.c index 1c06bfc5a7ef..e25e5fe183ba 100644 --- a/arch/arm/mach-ixp23xx/espresso.c +++ b/arch/arm/mach-ixp23xx/espresso.c | |||
@@ -85,8 +85,6 @@ static void __init espresso_init(void) | |||
85 | 85 | ||
86 | MACHINE_START(ESPRESSO, "IP Fabrics Double Espresso") | 86 | MACHINE_START(ESPRESSO, "IP Fabrics Double Espresso") |
87 | /* Maintainer: Lennert Buytenhek */ | 87 | /* Maintainer: Lennert Buytenhek */ |
88 | .phys_io = IXP23XX_PERIPHERAL_PHYS, | ||
89 | .io_pg_offst = ((IXP23XX_PERIPHERAL_VIRT >> 18)) & 0xfffc, | ||
90 | .map_io = ixp23xx_map_io, | 88 | .map_io = ixp23xx_map_io, |
91 | .init_irq = ixp23xx_init_irq, | 89 | .init_irq = ixp23xx_init_irq, |
92 | .timer = &ixp23xx_timer, | 90 | .timer = &ixp23xx_timer, |
diff --git a/arch/arm/mach-ixp23xx/ixdp2351.c b/arch/arm/mach-ixp23xx/ixdp2351.c index f1b124a709ab..664e39c2a903 100644 --- a/arch/arm/mach-ixp23xx/ixdp2351.c +++ b/arch/arm/mach-ixp23xx/ixdp2351.c | |||
@@ -328,8 +328,6 @@ static void __init ixdp2351_init(void) | |||
328 | 328 | ||
329 | MACHINE_START(IXDP2351, "Intel IXDP2351 Development Platform") | 329 | MACHINE_START(IXDP2351, "Intel IXDP2351 Development Platform") |
330 | /* Maintainer: MontaVista Software, Inc. */ | 330 | /* Maintainer: MontaVista Software, Inc. */ |
331 | .phys_io = IXP23XX_PERIPHERAL_PHYS, | ||
332 | .io_pg_offst = ((IXP23XX_PERIPHERAL_VIRT >> 18)) & 0xfffc, | ||
333 | .map_io = ixdp2351_map_io, | 331 | .map_io = ixdp2351_map_io, |
334 | .init_irq = ixdp2351_init_irq, | 332 | .init_irq = ixdp2351_init_irq, |
335 | .timer = &ixp23xx_timer, | 333 | .timer = &ixp23xx_timer, |
diff --git a/arch/arm/mach-ixp23xx/roadrunner.c b/arch/arm/mach-ixp23xx/roadrunner.c index 6d38d769761c..76c61ba73218 100644 --- a/arch/arm/mach-ixp23xx/roadrunner.c +++ b/arch/arm/mach-ixp23xx/roadrunner.c | |||
@@ -171,8 +171,6 @@ static void __init roadrunner_init(void) | |||
171 | 171 | ||
172 | MACHINE_START(ROADRUNNER, "ADI Engineering RoadRunner Development Platform") | 172 | MACHINE_START(ROADRUNNER, "ADI Engineering RoadRunner Development Platform") |
173 | /* Maintainer: Deepak Saxena */ | 173 | /* Maintainer: Deepak Saxena */ |
174 | .phys_io = IXP23XX_PERIPHERAL_PHYS, | ||
175 | .io_pg_offst = ((IXP23XX_PERIPHERAL_VIRT >> 18)) & 0xfffc, | ||
176 | .map_io = ixp23xx_map_io, | 174 | .map_io = ixp23xx_map_io, |
177 | .init_irq = ixp23xx_init_irq, | 175 | .init_irq = ixp23xx_init_irq, |
178 | .timer = &ixp23xx_timer, | 176 | .timer = &ixp23xx_timer, |