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