From: Al Viro Date: Mon, 26 Sep 2005 05:19:28 +0000 (+0100) Subject: [PATCH] m32r: missing __iomem in ioremap() declaration X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=24558a0f7a00fccd19a6e6502956463f056ce90e;p=linux-beck.git [PATCH] m32r: missing __iomem in ioremap() declaration Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/include/asm-m32r/io.h b/include/asm-m32r/io.h index 8e9e481e6996..70ad1c949c2b 100644 --- a/include/asm-m32r/io.h +++ b/include/asm-m32r/io.h @@ -60,7 +60,7 @@ __ioremap(unsigned long offset, unsigned long size, unsigned long flags); * address. */ -static inline void * ioremap(unsigned long offset, unsigned long size) +static inline void __iomem *ioremap(unsigned long offset, unsigned long size) { return __ioremap(offset, size, 0); }