diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-15 12:42:55 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-15 12:42:55 +0900 |
commit | 79f1c9da5e5fc5f4705836d8c1cee2213fc80640 (patch) | |
tree | 78c03e959f7bf6940b4c05937861b4793e6b5cec /arch/sh/mm/cache.c | |
parent | a58e1a2ab4f6334c50dfbda83d3a5c6e0b2b4bee (diff) |
sh: Convert SH-3 to new cacheflush interface.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/cache.c')
-rw-r--r-- | arch/sh/mm/cache.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sh/mm/cache.c b/arch/sh/mm/cache.c index b56cce40891..c9480b48c74 100644 --- a/arch/sh/mm/cache.c +++ b/arch/sh/mm/cache.c @@ -256,6 +256,12 @@ void __init cpu_cache_init(void) sh2a_cache_init(); } + if (boot_cpu_data.family == CPU_FAMILY_SH3) { + extern void __weak sh3_cache_init(void); + + sh3_cache_init(); + } + if ((boot_cpu_data.family == CPU_FAMILY_SH4) || (boot_cpu_data.family == CPU_FAMILY_SH4A) || (boot_cpu_data.family == CPU_FAMILY_SH4AL_DSP)) { |