aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-parisc/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-parisc/io.h')
-rw-r--r--include/asm-parisc/io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-parisc/io.h b/include/asm-parisc/io.h
index 95f00e11c7b4..55ddb1842107 100644
--- a/include/asm-parisc/io.h
+++ b/include/asm-parisc/io.h
@@ -138,7 +138,7 @@ extern void __iomem * __ioremap(unsigned long offset, unsigned long size, unsign
138/* Most machines react poorly to I/O-space being cacheable... Instead let's 138/* Most machines react poorly to I/O-space being cacheable... Instead let's
139 * define ioremap() in terms of ioremap_nocache(). 139 * define ioremap() in terms of ioremap_nocache().
140 */ 140 */
141extern inline void __iomem * ioremap(unsigned long offset, unsigned long size) 141static inline void __iomem * ioremap(unsigned long offset, unsigned long size)
142{ 142{
143 return __ioremap(offset, size, _PAGE_NO_CACHE); 143 return __ioremap(offset, size, _PAGE_NO_CACHE);
144} 144}