hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
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 /*