aboutsummaryrefslogtreecommitdiff
path: root/arch/parisc
diff options
context:
space:
mode:
authorKyle McMartin <kyle@shortfin.cabal.ca>2009-02-17 12:42:52 -0500
committerKyle McMartin <kyle@treachery.i.cabal.ca>2009-03-13 01:20:48 -0400
commit0cb385e3ff54ee095d9873209f4da764dfb17fec (patch)
tree72b1dc876ec08a019fe4534e094a7f3738bfa976 /arch/parisc
parentd4995244bd4c02eb7bea3c63aee81a2f2b64910e (diff)
parisc: define x->x mmio accessors
Bloody inconsiderate driver writers... Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc')
-rw-r--r--arch/parisc/include/asm/io.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/parisc/include/asm/io.h b/arch/parisc/include/asm/io.h
index 1fa905ea53d..1f6d2ae7aba 100644
--- a/arch/parisc/include/asm/io.h
+++ b/arch/parisc/include/asm/io.h
@@ -208,6 +208,15 @@ static inline void writeq(unsigned long long q, volatile void __iomem *addr)
__raw_writeq(cpu_to_le64(q), addr);
}
+#define readb readb
+#define readw readw
+#define readl readl
+#define readq readq
+#define writeb writeb
+#define writew writew
+#define writel writel
+#define writeq writeq
+
#define readb_relaxed(addr) readb(addr)
#define readw_relaxed(addr) readw(addr)
#define readl_relaxed(addr) readl(addr)