summaryrefslogtreecommitdiffstats
path: root/arch/mips/mach-ath79
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2015-05-19 10:31:26 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2015-05-20 08:05:44 +0200
commit5731d3ebccb8cee4cd9283e179e94c1d01398e17 (patch)
treec26acf702ecc4160c1f8e26ab89c269250e7d0e2 /arch/mips/mach-ath79
parent1ec907c70141e4f9c7c09ac426082a1848dd6ff3 (diff)
downloadbarebox-5731d3ebccb8cee4cd9283e179e94c1d01398e17.tar.gz
barebox-5731d3ebccb8cee4cd9283e179e94c1d01398e17.tar.xz
Abolish cpu_read* and cpu_write* accessors
Commit 2e6a88f2101d (add cpu native ordered io accessors) introduced these macros and then commit be57f20cdd7d (Fix big endian MMIO primitives) figured out they are equivalent to __raw_{read,write}*. They turned out unnecessary after all. Anyway, most source files use __raw_read* and __raw_write*. Let's replace a few remaining references and abolish them. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/mips/mach-ath79')
-rw-r--r--arch/mips/mach-ath79/include/mach/debug_ll.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/mach-ath79/include/mach/debug_ll.h b/arch/mips/mach-ath79/include/mach/debug_ll.h
index c697318488..64db67499c 100644
--- a/arch/mips/mach-ath79/include/mach/debug_ll.h
+++ b/arch/mips/mach-ath79/include/mach/debug_ll.h
@@ -41,12 +41,12 @@
static inline void ar933x_debug_ll_writel(u32 b, int offset)
{
- cpu_writel(b, (u8 *)DEBUG_LL_UART_ADDR + offset);
+ __raw_writel(b, (u8 *)DEBUG_LL_UART_ADDR + offset);
}
static inline u32 ar933x_debug_ll_readl(int offset)
{
- return cpu_readl((u8 *)DEBUG_LL_UART_ADDR + offset);
+ return __raw_readl((u8 *)DEBUG_LL_UART_ADDR + offset);
}
static inline void PUTC_LL(int ch)