kernel/tools/include/asm-generic/bitops/fls.h
.. .. @@ -10,7 +10,7 @@ 10 10 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. 11 11 */ 12 12 13 -static __always_inline int fls(int x)13 +static __always_inline int fls(unsigned int x)14 14 { 15 15 int r = 32; 16 16