summaryrefslogtreecommitdiffstats
path: root/include/io.h
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 /include/io.h
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 'include/io.h')
-rw-r--r--include/io.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/io.h b/include/io.h
index 8d885de68f..8eb56b061f 100644
--- a/include/io.h
+++ b/include/io.h
@@ -3,12 +3,4 @@
#include <asm/io.h>
-/* cpu_read/cpu_write: cpu native io accessors */
-#define cpu_readb(a) __raw_readb(a)
-#define cpu_readw(a) __raw_readw(a)
-#define cpu_readl(a) __raw_readl(a)
-#define cpu_writeb(v, a) __raw_writeb((v), (a))
-#define cpu_writew(v, a) __raw_writew((v), (a))
-#define cpu_writel(v, a) __raw_writel((v), (a))
-
#endif /* __IO_H */