hc
2024-01-31 f9004dbfff8a3fbbd7e2a88c8a4327c7f2f8e5b2
kernel/include/asm-generic/bitops/builtin-fls.h
....@@ -9,7 +9,7 @@
99 * This is defined the same way as ffs.
1010 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
1111 */
12
-static __always_inline int fls(int x)
12
+static __always_inline int fls(unsigned int x)
1313 {
1414 return x ? sizeof(x) * 8 - __builtin_clz(x) : 0;
1515 }