diff options
Diffstat (limited to 'arch/sh/mm/cache-shx3.c')
| -rw-r--r-- | arch/sh/mm/cache-shx3.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/sh/mm/cache-shx3.c b/arch/sh/mm/cache-shx3.c index c0adbee97b5f..24c58b7dc022 100644 --- a/arch/sh/mm/cache-shx3.c +++ b/arch/sh/mm/cache-shx3.c @@ -19,7 +19,7 @@ void __init shx3_cache_init(void)  {  	unsigned int ccr; -	ccr = __raw_readl(CCR); +	ccr = __raw_readl(SH_CCR);  	/*  	 * If we've got cache aliases, resolve them in hardware. @@ -40,5 +40,5 @@ void __init shx3_cache_init(void)  	ccr |= CCR_CACHE_IBE;  #endif -	writel_uncached(ccr, CCR); +	writel_uncached(ccr, SH_CCR);  } |