diff options
author | David Howells <dhowells@redhat.com> | 2008-08-20 16:53:33 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-20 22:19:51 +0200 |
commit | 449f76506f76051839dfa945c59881c17509cfbf (patch) | |
tree | bcde399bdc2c342a6574c4c7d1e9f6d7374e55a7 /include/asm-mn10300/io.h | |
parent | Reserve NFS fileid values for btrfs (diff) | |
download | linux-449f76506f76051839dfa945c59881c17509cfbf.tar.xz linux-449f76506f76051839dfa945c59881c17509cfbf.zip |
MN10300: Supply ioremap_wc() for MN10300
Supply ioremap_wc() for MN10300.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r-- | include/asm-mn10300/io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-mn10300/io.h b/include/asm-mn10300/io.h index b8b6dc878250..c1a4119e6497 100644 --- a/include/asm-mn10300/io.h +++ b/include/asm-mn10300/io.h @@ -259,6 +259,8 @@ static inline void *ioremap_nocache(unsigned long offset, unsigned long size) return (void *) (offset | 0x20000000); } +#define ioremap_wc ioremap_nocache + static inline void iounmap(void *addr) { } |