aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/bitops/builtin-fls.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic/bitops/builtin-fls.h')
-rw-r--r--include/asm-generic/bitops/builtin-fls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/bitops/builtin-fls.h b/include/asm-generic/bitops/builtin-fls.h
index 62daf940989d..c8455cc28841 100644
--- a/include/asm-generic/bitops/builtin-fls.h
+++ b/include/asm-generic/bitops/builtin-fls.h
@@ -9,7 +9,7 @@
* This is defined the same way as ffs.
* Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
*/
-static __always_inline int fls(int x)
+static __always_inline int fls(unsigned int x)
{
return x ? sizeof(x) * 8 - __builtin_clz(x) : 0;
}