diff options
Diffstat (limited to 'arch/m68k/include/asm/io.h')
-rw-r--r-- | arch/m68k/include/asm/io.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/io.h b/arch/m68k/include/asm/io.h index c70cc9155003..bccd5a914eb6 100644 --- a/arch/m68k/include/asm/io.h +++ b/arch/m68k/include/asm/io.h | |||
@@ -3,3 +3,11 @@ | |||
3 | #else | 3 | #else |
4 | #include <asm/io_mm.h> | 4 | #include <asm/io_mm.h> |
5 | #endif | 5 | #endif |
6 | |||
7 | #define readb_relaxed(addr) readb(addr) | ||
8 | #define readw_relaxed(addr) readw(addr) | ||
9 | #define readl_relaxed(addr) readl(addr) | ||
10 | |||
11 | #define writeb_relaxed(b, addr) writeb(b, addr) | ||
12 | #define writew_relaxed(b, addr) writew(b, addr) | ||
13 | #define writel_relaxed(b, addr) writel(b, addr) | ||