From: Al Viro Date: Thu, 26 Jul 2007 16:34:39 +0000 (+0100) Subject: alpha: long constant X-Git-Tag: v3.12-rc1~27525 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5c03726a7d0700222fe3c134c6ef834040974c5;p=kernel%2Fkernel-generic.git alpha: long constant Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/include/asm-alpha/bitops.h b/include/asm-alpha/bitops.h index 3a0cbeb..9e71201 100644 --- a/include/asm-alpha/bitops.h +++ b/include/asm-alpha/bitops.h @@ -324,7 +324,7 @@ static inline int fls64(unsigned long x) { unsigned long t, a, r; - t = __kernel_cmpbge (x, 0x0101010101010101); + t = __kernel_cmpbge (x, 0x0101010101010101UL); a = __flsm1_tab[t]; t = __kernel_extbl (x, a); r = a*8 + __flsm1_tab[t] + (x != 0);