diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-07 05:10:27 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-07 05:10:27 -0400 |
commit | 0fb849b9d743a20056f2418cd955e5c650658663 (patch) | |
tree | dd2d44103536ae83f8db483a8657bdcc36ad5c14 /arch/sh/kernel/time_64.c | |
parent | ae318a148e4d255dfbc87d963fdd6031c2af9c46 (diff) |
sh: Integrate the SH-5 onchip_remap() more coherently.
Presently this is special-cased for early initialization. While there are
situations where these static early initializations are still necessary,
with minor changes it is possible to use this for the regular ioremap
implementation as well. This allows us to kill off the special-casing for
the remap completely and to start tidying up all of the SH-5
special-casing in drivers.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/time_64.c')
-rw-r--r-- | arch/sh/kernel/time_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/time_64.c b/arch/sh/kernel/time_64.c index f4f5e8ad5bec..7bfeaa09b947 100644 --- a/arch/sh/kernel/time_64.c +++ b/arch/sh/kernel/time_64.c | |||
@@ -243,12 +243,12 @@ void __init time_init(void) | |||
243 | unsigned long interval; | 243 | unsigned long interval; |
244 | struct clk *clk; | 244 | struct clk *clk; |
245 | 245 | ||
246 | tmu_base = onchip_remap(TMU_BASE, 1024, "TMU"); | 246 | tmu_base = (unsigned long)ioremap_nocache(TMU_BASE, 1024); |
247 | if (!tmu_base) { | 247 | if (!tmu_base) { |
248 | panic("Unable to remap TMU\n"); | 248 | panic("Unable to remap TMU\n"); |
249 | } | 249 | } |
250 | 250 | ||
251 | rtc_base = onchip_remap(RTC_BASE, 1024, "RTC"); | 251 | rtc_base = (unsigned long)ioremap_nocache(RTC_BASE, 1024); |
252 | if (!rtc_base) { | 252 | if (!rtc_base) { |
253 | panic("Unable to remap RTC\n"); | 253 | panic("Unable to remap RTC\n"); |
254 | } | 254 | } |