aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-07-08 16:10:17 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:40 -0400
commit3ef33e68c1e956bb9a93734062076edcccca7070 (patch)
treeb1d1e433421fd000d8062dd584ab20af1132ebb3
parent04988d6fda5c1cc670bd4c4d563b3443cf7ccce7 (diff)
Date: Fri Jul 8 20:10:17 2005 +0000
Those literals are long. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/mm/tlbex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c
index 3b737fafb9b..7bd8584fafb 100644
--- a/arch/mips/mm/tlbex.c
+++ b/arch/mips/mm/tlbex.c
@@ -487,7 +487,7 @@ L_LA(_r3000_write_probe_fail)
487static __init int __attribute__((unused)) in_compat_space_p(long addr) 487static __init int __attribute__((unused)) in_compat_space_p(long addr)
488{ 488{
489 /* Is this address in 32bit compat space? */ 489 /* Is this address in 32bit compat space? */
490 return (((addr) & 0xffffffff00000000) == 0xffffffff00000000); 490 return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L);
491} 491}
492 492
493static __init int __attribute__((unused)) rel_highest(long val) 493static __init int __attribute__((unused)) rel_highest(long val)