hc
2024-05-16 8d2a02b24d66aa359e83eebc1ed3c0f85367a1cb
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 /*