hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
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 }