aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2012-11-07 12:54:21 +0100
committerRalf Baechle <ralf@linux-mips.org>2012-11-09 10:58:18 +0100
commit4870639a754991a52fc8f4ba82f0d9c247c33659 (patch)
tree949b865b4f489b7254bb291436d024ee33b842fc
parent3d70f8c617a436c7146ecb81df2265b4626dfe89 (diff)
downloadkvm-4870639a754991a52fc8f4ba82f0d9c247c33659.tar.gz
MIPS: compat: Fix use of TIF_32BIT_ADDR vs _TIF_32BIT_ADDR
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/include/asm/thread_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h
index 8debe9e9175490..d8323ea9d5e897 100644
--- a/arch/mips/include/asm/thread_info.h
+++ b/arch/mips/include/asm/thread_info.h
@@ -115,7 +115,7 @@ register struct thread_info *__current_thread_info __asm__("$28");
#ifdef CONFIG_MIPS32_O32
#define TIF_32BIT TIF_32BIT_REGS
#elif defined(CONFIG_MIPS32_N32)
-#define TIF_32BIT _TIF_32BIT_ADDR
+#define TIF_32BIT TIF_32BIT_ADDR
#endif /* CONFIG_MIPS32_O32 */
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)