forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-10 748e4f3d702def1a4bff191e0cf93b6a05340f01
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 /*