diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-10-16 17:24:59 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-10-18 03:58:41 -0400 |
commit | f13cec8447f18cca3a0feb4b83b7ba6fae9e59ae (patch) | |
tree | ab42ee63ed1a108262c9a7267fa7e36d8a9e923d /include/asm-parisc/io.h | |
parent | 0ed5462927211286502576142bd322d850b49a86 (diff) |
[PARISC] parisc: "extern inline" -> "static inline"
"extern inline" will have different semantics with gcc 4.3, and "static
inline" is correct here.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Matthew Wilcox <willy@debian.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'include/asm-parisc/io.h')
-rw-r--r-- | include/asm-parisc/io.h | 2 |
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 | */ |
141 | extern inline void __iomem * ioremap(unsigned long offset, unsigned long size) | 141 | static 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 | } |