This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / asm-arm / bitops.h
index ce923ee..994e0ae 100644 (file)
@@ -342,7 +342,7 @@ static inline unsigned long __ffs(unsigned long word)
  * the clz instruction for much better code efficiency.
  */
 
-static __inline__ int generic_fls(int x);
+extern __inline__ int generic_fls(int x);
 #define fls(x) \
        ( __builtin_constant_p(x) ? generic_fls(x) : \
          ({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) )