diff options
Diffstat (limited to 'arch/sh/mm/cache.c')
| -rw-r--r-- | arch/sh/mm/cache.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/mm/cache.c b/arch/sh/mm/cache.c index 0f4095d7ac8..ba401d137bb 100644 --- a/arch/sh/mm/cache.c +++ b/arch/sh/mm/cache.c @@ -334,6 +334,13 @@ void __init cpu_cache_init(void)  		extern void __weak sh4_cache_init(void);  		sh4_cache_init(); + +		if ((boot_cpu_data.type == CPU_SH7786) || +		    (boot_cpu_data.type == CPU_SHX3)) { +			extern void __weak shx3_cache_init(void); + +			shx3_cache_init(); +		}  	}  	if (boot_cpu_data.family == CPU_FAMILY_SH5) {  |