include/asm-generic/bitops/fls64.h
changeset 2 d1f6d8b6f81c
parent 0 aa628870c1d3
--- a/include/asm-generic/bitops/fls64.h	Thu Apr 09 12:06:38 2009 +0200
+++ b/include/asm-generic/bitops/fls64.h	Thu Apr 09 12:07:21 2009 +0200
@@ -15,7 +15,7 @@
  * at position 64.
  */
 #if BITS_PER_LONG == 32
-static inline int fls64(__u64 x)
+static __always_inline int fls64(__u64 x)
 {
 	__u32 h = x >> 32;
 	if (h)
@@ -23,7 +23,7 @@
 	return fls(x);
 }
 #elif BITS_PER_LONG == 64
-static inline int fls64(__u64 x)
+static __always_inline int fls64(__u64 x)
 {
 	if (x == 0)
 		return 0;