diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-sh64/io.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-sh64/io.h b/include/asm-sh64/io.h index 1f37b6931922..3de3ad99f457 100644 --- a/include/asm-sh64/io.h +++ b/include/asm-sh64/io.h | |||
@@ -119,6 +119,13 @@ void insw(unsigned long port, void *addr, unsigned long count); | |||
119 | void outsl(unsigned long port, const void *addr, unsigned long count); | 119 | void outsl(unsigned long port, const void *addr, unsigned long count); |
120 | void insl(unsigned long port, void *addr, unsigned long count); | 120 | void insl(unsigned long port, void *addr, unsigned long count); |
121 | 121 | ||
122 | #define inb_p(addr) inb(addr) | ||
123 | #define inw_p(addr) inw(addr) | ||
124 | #define inl_p(addr) inl(addr) | ||
125 | #define outb_p(x,addr) outb(x,addr) | ||
126 | #define outw_p(x,addr) outw(x,addr) | ||
127 | #define outl_p(x,addr) outl(x,addr) | ||
128 | |||
122 | #define __raw_readb readb | 129 | #define __raw_readb readb |
123 | #define __raw_readw readw | 130 | #define __raw_readw readw |
124 | #define __raw_readl readl | 131 | #define __raw_readl readl |