Skip to content

Commit

Permalink
[PATCH] m32r: missing __iomem in ioremap() declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Sep 27, 2005
1 parent ce3a161 commit 24558a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-m32r/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 24558a0

Please sign in to comment.