diff options
author | David Howells <dhowells@redhat.com> | 2008-08-20 15:53:33 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-20 13:19:51 -0700 |
commit | 449f76506f76051839dfa945c59881c17509cfbf (patch) | |
tree | bcde399bdc2c342a6574c4c7d1e9f6d7374e55a7 | |
parent | e4464facd6f1404c2baeb6798d71e34423e7aeaa (diff) | |
download | linux-3.10-449f76506f76051839dfa945c59881c17509cfbf.tar.gz linux-3.10-449f76506f76051839dfa945c59881c17509cfbf.tar.bz2 linux-3.10-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>
-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 b8b6dc87825..c1a4119e649 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) { } |