hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
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 }