diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2010-01-26 12:58:40 +0900 | 
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-26 12:58:40 +0900 | 
| commit | 9d56dd3b083a3bec56e9da35ce07baca81030b03 (patch) | |
| tree | a9df9d514fbc32defc1ca8a6d7c2795f15b8a128 /arch/sh/mm/cache-sh3.c | |
| parent | a077e91690fb32a1453423b2cf1df3492fd30c3a (diff) | |
| download | olio-linux-3.10-9d56dd3b083a3bec56e9da35ce07baca81030b03.tar.xz olio-linux-3.10-9d56dd3b083a3bec56e9da35ce07baca81030b03.zip  | |
sh: Mass ctrl_in/outX to __raw_read/writeX conversion.
The old ctrl in/out routines are non-portable and unsuitable for
cross-platform use. While drivers/sh has already been sanitized, there
is still quite a lot of code that is not. This converts the arch/sh/ bits
over, which permits us to flag the routines as deprecated whilst still
building with -Werror for the architecture code, and to ensure that
future users are not added.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/cache-sh3.c')
| -rw-r--r-- | arch/sh/mm/cache-sh3.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/mm/cache-sh3.c b/arch/sh/mm/cache-sh3.c index faef80c9813..e37523f6519 100644 --- a/arch/sh/mm/cache-sh3.c +++ b/arch/sh/mm/cache-sh3.c @@ -50,12 +50,12 @@ static void sh3__flush_wback_region(void *start, int size)  			p = __pa(v);  			addr = addrstart | (v & current_cpu_data.dcache.entry_mask);  			local_irq_save(flags); -			data = ctrl_inl(addr); +			data = __raw_readl(addr);  			if ((data & CACHE_PHYSADDR_MASK) ==  			    (p & CACHE_PHYSADDR_MASK)) {  				data &= ~SH_CACHE_UPDATED; -				ctrl_outl(data, addr); +				__raw_writel(data, addr);  				local_irq_restore(flags);  				break;  			} @@ -86,7 +86,7 @@ static void sh3__flush_purge_region(void *start, int size)  		data = (v & 0xfffffc00); /* _Virtual_ address, ~U, ~V */  		addr = CACHE_OC_ADDRESS_ARRAY |  			(v & current_cpu_data.dcache.entry_mask) | SH_CACHE_ASSOC; -		ctrl_outl(data, addr); +		__raw_writel(data, addr);  	}  }  |