Commit b6db0a56 authored by Michal Simek's avatar Michal Simek

microblaze: Change extern inline to static inline

With compilers which follow the C99 standard (like modern versions of gcc and
clang), "extern inline" does the opposite thing from older versions of gcc
(emits code for an externally linkable version of the inline function).

"static inline" does the intended behavior in all cases instead.

Description taken from:
"staging, rtl8192e, LLVMLinux: Change extern inline to static inline"
(sha1: 6d91857d)

The patch removes compilation warnings W=1:
./arch/microblaze/include/asm/delay.h:18:20: warning: no previous
prototype for '__delay' [-Wmissing-prototypes]
 extern inline void __delay(unsigned long loops)
./arch/microblaze/include/asm/delay.h:46:20: warning: no previous
prototype for '__udelay' [-Wmissing-prototypes]
 extern inline void __udelay(unsigned int x)
./arch/microblaze/include/asm/pgalloc.h:63:22: warning: no previous
prototype for 'get_pgd_slow' [-Wmissing-prototypes]
 extern inline pgd_t *get_pgd_slow(void)
./arch/microblaze/include/asm/pgalloc.h:73:22: warning: no previous
prototype for 'get_pgd_fast' [-Wmissing-prototypes]
 extern inline pgd_t *get_pgd_fast(void)
./arch/microblaze/include/asm/pgalloc.h:87:20: warning: no previous
prototype for 'free_pgd_fast' [-Wmissing-prototypes]
 extern inline void free_pgd_fast(pgd_t *pgd)
./arch/microblaze/include/asm/pgalloc.h:94:20: warning: no previous
prototype for 'free_pgd_slow' [-Wmissing-prototypes]
 extern inline void free_pgd_slow(pgd_t *pgd)
./arch/microblaze/include/asm/pgalloc.h:149:20: warning: no previous
prototype for 'pte_free_fast' [-Wmissing-prototypes]
 extern inline void pte_free_fast(pte_t *pte)
./arch/microblaze/include/asm/pgalloc.h:156:20: warning: no previous
prototype for 'pte_free_kernel' [-Wmissing-prototypes]
 extern inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
./arch/microblaze/include/asm/pgalloc.h:161:20: warning: no previous
prototype for 'pte_free_slow' [-Wmissing-prototypes]
 extern inline void pte_free_slow(struct page *ptepage)
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent e14ebe41
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#include <linux/param.h> #include <linux/param.h>
extern inline void __delay(unsigned long loops) static inline void __delay(unsigned long loops)
{ {
asm volatile ("# __delay \n\t" \ asm volatile ("# __delay \n\t" \
"1: addi %0, %0, -1\t\n" \ "1: addi %0, %0, -1\t\n" \
...@@ -43,7 +43,7 @@ extern inline void __delay(unsigned long loops) ...@@ -43,7 +43,7 @@ extern inline void __delay(unsigned long loops)
extern unsigned long loops_per_jiffy; extern unsigned long loops_per_jiffy;
extern inline void __udelay(unsigned int x) static inline void __udelay(unsigned int x)
{ {
unsigned long long tmp = unsigned long long tmp =
......
...@@ -60,7 +60,7 @@ extern unsigned long get_zero_page_fast(void); ...@@ -60,7 +60,7 @@ extern unsigned long get_zero_page_fast(void);
extern void __bad_pte(pmd_t *pmd); extern void __bad_pte(pmd_t *pmd);
extern inline pgd_t *get_pgd_slow(void) static inline pgd_t *get_pgd_slow(void)
{ {
pgd_t *ret; pgd_t *ret;
...@@ -70,7 +70,7 @@ extern inline pgd_t *get_pgd_slow(void) ...@@ -70,7 +70,7 @@ extern inline pgd_t *get_pgd_slow(void)
return ret; return ret;
} }
extern inline pgd_t *get_pgd_fast(void) static inline pgd_t *get_pgd_fast(void)
{ {
unsigned long *ret; unsigned long *ret;
...@@ -84,14 +84,14 @@ extern inline pgd_t *get_pgd_fast(void) ...@@ -84,14 +84,14 @@ extern inline pgd_t *get_pgd_fast(void)
return (pgd_t *)ret; return (pgd_t *)ret;
} }
extern inline void free_pgd_fast(pgd_t *pgd) static inline void free_pgd_fast(pgd_t *pgd)
{ {
*(unsigned long **)pgd = pgd_quicklist; *(unsigned long **)pgd = pgd_quicklist;
pgd_quicklist = (unsigned long *) pgd; pgd_quicklist = (unsigned long *) pgd;
pgtable_cache_size++; pgtable_cache_size++;
} }
extern inline void free_pgd_slow(pgd_t *pgd) static inline void free_pgd_slow(pgd_t *pgd)
{ {
free_page((unsigned long)pgd); free_page((unsigned long)pgd);
} }
...@@ -146,19 +146,19 @@ static inline pte_t *pte_alloc_one_fast(struct mm_struct *mm, ...@@ -146,19 +146,19 @@ static inline pte_t *pte_alloc_one_fast(struct mm_struct *mm,
return (pte_t *)ret; return (pte_t *)ret;
} }
extern inline void pte_free_fast(pte_t *pte) static inline void pte_free_fast(pte_t *pte)
{ {
*(unsigned long **)pte = pte_quicklist; *(unsigned long **)pte = pte_quicklist;
pte_quicklist = (unsigned long *) pte; pte_quicklist = (unsigned long *) pte;
pgtable_cache_size++; pgtable_cache_size++;
} }
extern inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
{ {
free_page((unsigned long)pte); free_page((unsigned long)pte);
} }
extern inline void pte_free_slow(struct page *ptepage) static inline void pte_free_slow(struct page *ptepage)
{ {
__free_page(ptepage); __free_page(ptepage);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment