summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2012-11-07 11:54:21 (GMT)
committerRalf Baechle <ralf@linux-mips.org>2012-11-09 09:58:18 (GMT)
commit4870639a754991a52fc8f4ba82f0d9c247c33659 (patch)
tree949b865b4f489b7254bb291436d024ee33b842fc /arch
parent3d70f8c617a436c7146ecb81df2265b4626dfe89 (diff)
downloadlinux-fsl-qoriq-4870639a754991a52fc8f4ba82f0d9c247c33659.tar.xz
MIPS: compat: Fix use of TIF_32BIT_ADDR vs _TIF_32BIT_ADDR
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-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 8debe9e..d8323ea 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)