]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
microblaze: Fix compilation warning in ext2_find_next_zero_bit
authorMichal Simek <monstr@monstr.eu>
Wed, 26 Sep 2012 12:42:38 +0000 (14:42 +0200)
committerMichal Simek <monstr@monstr.eu>
Wed, 7 Nov 2012 16:11:14 +0000 (17:11 +0100)
ext2_find_next_zero_bit must be also static if __swab32 is also static.

Warning:
include/asm/bitops.h:369:22: warning: '__fswab32' is static but
used in inline function 'ext2_find_next_zero_bit'
which is not static [enabled by default]

Signed-off-by: Michal Simek <monstr@monstr.eu>
Acked-by: Stephan Linz <linz@li-pro.net>
arch/microblaze/include/asm/bitops.h

index e8c835f7c071246ddc707fd5f934e1d43fb80038..eafa2b576bcf6a24fb010d12f5f53bbbfd7114ae 100644 (file)
@@ -319,7 +319,8 @@ extern __inline__ int ext2_test_bit(int nr, const volatile void * addr)
 #define ext2_find_first_zero_bit(addr, size) \
        ext2_find_next_zero_bit((addr), (size), 0)
 
-extern __inline__ unsigned long ext2_find_next_zero_bit(void *addr, unsigned long size, unsigned long offset)
+static inline unsigned long ext2_find_next_zero_bit(void *addr,
+                               unsigned long size, unsigned long offset)
 {
        unsigned long *p = ((unsigned long *) addr) + (offset >> 5);
        unsigned long result = offset & ~31UL;