kernel/arch/alpha/include/asm/bitops.h
.. .. @@ -391,9 +391,9 @@ 391 391 return fls64(x) - 1; 392 392 } 393 393 394 -static inline int fls(int x)394 +static inline int fls(unsigned int x)395 395 { 396 - return fls64((unsigned int) x);396 + return fls64(x);397 397 } 398 398 399 399 /*