From: Adrian Bunk Date: Sun, 8 Jan 2006 09:04:01 +0000 (-0800) Subject: [PATCH] fs/udf/balloc.c: "extern inline" -> "static inline" X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ddc0f846aa7621940b74cee0c91cd26405058a4d;p=mv-sheeva.git [PATCH] fs/udf/balloc.c: "extern inline" -> "static inline" "extern inline" doesn't make much sense. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index 6598a5037ac..4fae57d9d11 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c @@ -41,7 +41,7 @@ #define uint(x) xuint(x) #define xuint(x) __le ## x -extern inline int find_next_one_bit (void * addr, int size, int offset) +static inline int find_next_one_bit (void * addr, int size, int offset) { uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); int result = offset & ~(BITS_PER_LONG-1);