forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-11 297b60346df8beafee954a0fd7c2d64f33f3b9bc
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