Commit cb91f479 authored by Yoshinori Sato's avatar Yoshinori Sato Committed by Linus Torvalds

[PATCH] fix "extern inline"

Signed-off-by: default avatarYoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4cf97e31
...@@ -42,7 +42,7 @@ static inline int generic_ffs(int x) ...@@ -42,7 +42,7 @@ static inline int generic_ffs(int x)
* fls: find last bit set. * fls: find last bit set.
*/ */
extern __inline__ int generic_fls(int x) static __inline__ int generic_fls(int x)
{ {
int r = 32; int r = 32;
...@@ -71,7 +71,7 @@ extern __inline__ int generic_fls(int x) ...@@ -71,7 +71,7 @@ extern __inline__ int generic_fls(int x)
return r; return r;
} }
extern __inline__ int get_bitmask_order(unsigned int count) static __inline__ int get_bitmask_order(unsigned int count)
{ {
int order; int order;
......
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