Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] fs/udf/balloc.c: "extern inline" -> "static inline"

"extern inline" doesn't make much sense.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Adrian Bunk and committed by
Linus Torvalds
ddc0f846 37a32795

+1 -1
+1 -1
fs/udf/balloc.c
··· 41 41 #define uint(x) xuint(x) 42 42 #define xuint(x) __le ## x 43 43 44 - extern inline int find_next_one_bit (void * addr, int size, int offset) 44 + static inline int find_next_one_bit (void * addr, int size, int offset) 45 45 { 46 46 uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); 47 47 int result = offset & ~(BITS_PER_LONG-1);