diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-09-12 07:41:05 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-09-12 07:41:05 -0400 |
commit | cb700aa4f13d38726defab3060d3ebeaf67dc189 (patch) | |
tree | 7d60e396368f649149d545a936e4ccebd83b8a0b /arch/sh/include/asm/io.h | |
parent | 934135c19d8a1be435bae75aefc09b8ae1698b16 (diff) |
sh: ioremap_prot support.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/io.h')
-rw-r--r-- | arch/sh/include/asm/io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/include/asm/io.h b/arch/sh/include/asm/io.h index e49cfee95fb2..1857666136f2 100644 --- a/arch/sh/include/asm/io.h +++ b/arch/sh/include/asm/io.h | |||
@@ -347,6 +347,8 @@ __ioremap_mode(unsigned long offset, unsigned long size, unsigned long flags) | |||
347 | __ioremap_mode((offset), (size), _PAGE_CACHABLE) | 347 | __ioremap_mode((offset), (size), _PAGE_CACHABLE) |
348 | #define p3_ioremap(offset, size, flags) \ | 348 | #define p3_ioremap(offset, size, flags) \ |
349 | __ioremap((offset), (size), (flags)) | 349 | __ioremap((offset), (size), (flags)) |
350 | #define ioremap_prot(offset, size, flags) \ | ||
351 | __ioremap_mode((offset), (size), (flags)) | ||
350 | #define iounmap(addr) \ | 352 | #define iounmap(addr) \ |
351 | __iounmap((addr)) | 353 | __iounmap((addr)) |
352 | 354 | ||