Commit 9797cae3bfd2d7190609cdce05248cabc5d9081e

Authored by Adrian Bunk
Committed by Ralf Baechle
1 parent e48ce6b8df

[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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/asm-mips/processor.h
... ... @@ -237,7 +237,7 @@
237 237  
238 238 #define ARCH_HAS_PREFETCH
239 239  
240   -extern inline void prefetch(const void *addr)
  240 +static inline void prefetch(const void *addr)
241 241 {
242 242 __asm__ __volatile__(
243 243 " .set mips4 \n"