diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-12-17 00:41:54 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:44:46 -0500 |
commit | 073da9c0de401e8683b6bc76c008a7e0850045d5 (patch) | |
tree | 7b843de420aec114f3ed497813ca9e5913d7e157 /arch/sh/boards | |
parent | 8c197c3afb4a9026973315cc6a3c189dd8434053 (diff) |
sh: Kill off cf-enabler with extreme prejudice.
Now that the rest of the boards that were using cf-enabler "generically"
have switched to setting up their mappings on their own, only the mach-se
boards were left using it. All of the cf-enabler using mach-se boards
use a special initialization of the MRSHPC windows rather than going
through the special PTE as other SH-4 platforms do. This consolidates
the MRSHPC setup logic, hooks it up on the boards that care, and gets rid
of any and all remaining references to cf-enabler.
This has been long overdue, as cf-enabler has been the bane of
arch/sh/kernel for the last 7 years. Good riddance.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r-- | arch/sh/boards/mach-se/770x/setup.c | 4 | ||||
-rw-r--r-- | arch/sh/boards/mach-se/7721/setup.c | 7 | ||||
-rw-r--r-- | arch/sh/boards/mach-se/7722/setup.c | 7 |
3 files changed, 11 insertions, 7 deletions
diff --git a/arch/sh/boards/mach-se/770x/setup.c b/arch/sh/boards/mach-se/770x/setup.c index 9123d9687bf7..527eb6b12610 100644 --- a/arch/sh/boards/mach-se/770x/setup.c +++ b/arch/sh/boards/mach-se/770x/setup.c | |||
@@ -8,8 +8,9 @@ | |||
8 | */ | 8 | */ |
9 | #include <linux/init.h> | 9 | #include <linux/init.h> |
10 | #include <linux/platform_device.h> | 10 | #include <linux/platform_device.h> |
11 | #include <asm/machvec.h> | ||
12 | #include <mach-se/mach/se.h> | 11 | #include <mach-se/mach/se.h> |
12 | #include <mach-se/mach/mrshpc.h> | ||
13 | #include <asm/machvec.h> | ||
13 | #include <asm/io.h> | 14 | #include <asm/io.h> |
14 | #include <asm/smc37c93x.h> | 15 | #include <asm/smc37c93x.h> |
15 | #include <asm/heartbeat.h> | 16 | #include <asm/heartbeat.h> |
@@ -175,6 +176,7 @@ static struct platform_device *se_devices[] __initdata = { | |||
175 | 176 | ||
176 | static int __init se_devices_setup(void) | 177 | static int __init se_devices_setup(void) |
177 | { | 178 | { |
179 | mrshpc_setup_windows(); | ||
178 | return platform_add_devices(se_devices, ARRAY_SIZE(se_devices)); | 180 | return platform_add_devices(se_devices, ARRAY_SIZE(se_devices)); |
179 | } | 181 | } |
180 | device_initcall(se_devices_setup); | 182 | device_initcall(se_devices_setup); |
diff --git a/arch/sh/boards/mach-se/7721/setup.c b/arch/sh/boards/mach-se/7721/setup.c index d3fc80ff4d83..55af4c36b43a 100644 --- a/arch/sh/boards/mach-se/7721/setup.c +++ b/arch/sh/boards/mach-se/7721/setup.c | |||
@@ -12,8 +12,9 @@ | |||
12 | */ | 12 | */ |
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
15 | #include <asm/machvec.h> | ||
16 | #include <mach-se/mach/se7721.h> | 15 | #include <mach-se/mach/se7721.h> |
16 | #include <mach-se/mach/mrshpc.h> | ||
17 | #include <asm/machvec.h> | ||
17 | #include <asm/io.h> | 18 | #include <asm/io.h> |
18 | #include <asm/heartbeat.h> | 19 | #include <asm/heartbeat.h> |
19 | 20 | ||
@@ -74,8 +75,8 @@ static struct platform_device *se7721_devices[] __initdata = { | |||
74 | 75 | ||
75 | static int __init se7721_devices_setup(void) | 76 | static int __init se7721_devices_setup(void) |
76 | { | 77 | { |
77 | return platform_add_devices(se7721_devices, | 78 | mrshpc_setup_windows(); |
78 | ARRAY_SIZE(se7721_devices)); | 79 | return platform_add_devices(se7721_devices, ARRAY_SIZE(se7721_devices)); |
79 | } | 80 | } |
80 | device_initcall(se7721_devices_setup); | 81 | device_initcall(se7721_devices_setup); |
81 | 82 | ||
diff --git a/arch/sh/boards/mach-se/7722/setup.c b/arch/sh/boards/mach-se/7722/setup.c index 02035bbf2cc2..af84904ed86f 100644 --- a/arch/sh/boards/mach-se/7722/setup.c +++ b/arch/sh/boards/mach-se/7722/setup.c | |||
@@ -15,9 +15,10 @@ | |||
15 | #include <linux/ata_platform.h> | 15 | #include <linux/ata_platform.h> |
16 | #include <linux/input.h> | 16 | #include <linux/input.h> |
17 | #include <linux/smc91x.h> | 17 | #include <linux/smc91x.h> |
18 | #include <mach-se/mach/se7722.h> | ||
19 | #include <mach-se/mach/mrshpc.h> | ||
18 | #include <asm/machvec.h> | 20 | #include <asm/machvec.h> |
19 | #include <asm/clock.h> | 21 | #include <asm/clock.h> |
20 | #include <mach-se/mach/se7722.h> | ||
21 | #include <asm/io.h> | 22 | #include <asm/io.h> |
22 | #include <asm/heartbeat.h> | 23 | #include <asm/heartbeat.h> |
23 | #include <asm/sh_keysc.h> | 24 | #include <asm/sh_keysc.h> |
@@ -147,8 +148,8 @@ static struct platform_device *se7722_devices[] __initdata = { | |||
147 | 148 | ||
148 | static int __init se7722_devices_setup(void) | 149 | static int __init se7722_devices_setup(void) |
149 | { | 150 | { |
150 | return platform_add_devices(se7722_devices, | 151 | mrshpc_setup_windows(); |
151 | ARRAY_SIZE(se7722_devices)); | 152 | return platform_add_devices(se7722_devices, ARRAY_SIZE(se7722_devices)); |
152 | } | 153 | } |
153 | device_initcall(se7722_devices_setup); | 154 | device_initcall(se7722_devices_setup); |
154 | 155 | ||