hc
2023-12-11 1f93a7dfd1f8d5ff7a5c53246c7534fe2332d6f4
kernel/tools/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