forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
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