diff options
-rw-r--r-- | arch/mips/mm/tlbex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
487 | static __init int __attribute__((unused)) in_compat_space_p(long addr) | 487 | static __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 | ||
493 | static __init int __attribute__((unused)) rel_highest(long val) | 493 | static __init int __attribute__((unused)) rel_highest(long val) |