forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-02-19 1c055e55a242a33e574e48be530e06770a210dcd
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