diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2012-11-07 06:54:21 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-11-09 04:58:18 -0500 |
commit | 4870639a754991a52fc8f4ba82f0d9c247c33659 (patch) | |
tree | 949b865b4f489b7254bb291436d024ee33b842fc /arch/mips | |
parent | 3d70f8c617a436c7146ecb81df2265b4626dfe89 (diff) |
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/mips')
-rw-r--r-- | arch/mips/include/asm/thread_info.h | 2 |
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 8debe9e91754..d8323ea9d5e8 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"); | |||
115 | #ifdef CONFIG_MIPS32_O32 | 115 | #ifdef CONFIG_MIPS32_O32 |
116 | #define TIF_32BIT TIF_32BIT_REGS | 116 | #define TIF_32BIT TIF_32BIT_REGS |
117 | #elif defined(CONFIG_MIPS32_N32) | 117 | #elif defined(CONFIG_MIPS32_N32) |
118 | #define TIF_32BIT _TIF_32BIT_ADDR | 118 | #define TIF_32BIT TIF_32BIT_ADDR |
119 | #endif /* CONFIG_MIPS32_O32 */ | 119 | #endif /* CONFIG_MIPS32_O32 */ |
120 | 120 | ||
121 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 121 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |