linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / arch / frv / mm / kmap.c
index fb78be3..c54f18e 100644 (file)
@@ -10,6 +10,7 @@
  * 2 of the License, or (at your option) any later version.
  */
 
+#include <linux/config.h>
 #include <linux/mm.h>
 #include <linux/kernel.h>
 #include <linux/string.h>
  * Map some physical address range into the kernel address space.
  */
 
-void __iomem *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
+void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
 {
-       return (void __iomem *)physaddr;
+       return (void *)physaddr;
 }
 
 /*
  * Unmap a ioremap()ed region again
  */
-void iounmap(void volatile __iomem *addr)
+void iounmap(void *addr)
 {
 }