forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/arch/alpha/include/asm/bitops.h
....@@ -391,9 +391,9 @@
391391 return fls64(x) - 1;
392392 }
393393
394
-static inline int fls(int x)
394
+static inline int fls(unsigned int x)
395395 {
396
- return fls64((unsigned int) x);
396
+ return fls64(x);
397397 }
398398
399399 /*