From: Ralf Baechle Date: Fri, 8 Jul 2005 20:10:17 +0000 (+0000) Subject: Date: Fri Jul 8 20:10:17 2005 +0000 X-Git-Tag: v2.6.16.28-rc1~3478^2~1^2~156 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3ef33e68c1e956bb9a93734062076edcccca7070;p=karo-tx-linux.git Date: Fri Jul 8 20:10:17 2005 +0000 Those literals are long. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 3b737fafb9b5..7bd8584fafb2 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c @@ -487,7 +487,7 @@ L_LA(_r3000_write_probe_fail) static __init int __attribute__((unused)) in_compat_space_p(long addr) { /* Is this address in 32bit compat space? */ - return (((addr) & 0xffffffff00000000) == 0xffffffff00000000); + return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L); } static __init int __attribute__((unused)) rel_highest(long val)