hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/include/asm-generic/bitops/fls.h
....@@ -10,7 +10,7 @@
1010 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
1111 */
1212
13
-static __always_inline int fls(int x)
13
+static __always_inline int fls(unsigned int x)
1414 {
1515 int r = 32;
1616