aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2007-07-06 21:03:30 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-07-10 12:32:55 -0400
commit9797cae3bfd2d7190609cdce05248cabc5d9081e (patch)
tree3ea5fa41890fc7650553fbb66c2dbe037e820088
parente48ce6b8df5b51af3f38b20bb3d008dff69ff64e (diff)
[MIPS] "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> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--include/asm-mips/processor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/processor.h b/include/asm-mips/processor.h
index 5f80ba71ab92..3a466dc7b7db 100644
--- a/include/asm-mips/processor.h
+++ b/include/asm-mips/processor.h
@@ -237,7 +237,7 @@ unsigned long get_wchan(struct task_struct *p);
237 237
238#define ARCH_HAS_PREFETCH 238#define ARCH_HAS_PREFETCH
239 239
240extern inline void prefetch(const void *addr) 240static inline void prefetch(const void *addr)
241{ 241{
242 __asm__ __volatile__( 242 __asm__ __volatile__(
243 " .set mips4 \n" 243 " .set mips4 \n"