diff options
author | Zhang Le <r0bertz@gentoo.org> | 2009-03-12 11:00:50 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-03-13 23:07:59 +0100 |
commit | 3b289d6e35a1a535c19a5b079f0500526754e650 (patch) | |
tree | 25e77201eed541e062a1f8cbcaddefe158ab701d /arch/mips/include/asm/seccomp.h | |
parent | Linus 2.6.29-rc8 (diff) | |
download | linux-3b289d6e35a1a535c19a5b079f0500526754e650.tar.xz linux-3b289d6e35a1a535c19a5b079f0500526754e650.zip |
MIPS: Fix TIF_32BIT undefined problem when seccomp is disabled
Signed-off-by: Zhang Le <r0bertz@gentoo.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/asm/seccomp.h')
-rw-r--r-- | arch/mips/include/asm/seccomp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/mips/include/asm/seccomp.h b/arch/mips/include/asm/seccomp.h index a6772e9507f5..ae6306ebdcad 100644 --- a/arch/mips/include/asm/seccomp.h +++ b/arch/mips/include/asm/seccomp.h @@ -15,8 +15,6 @@ */ #ifdef CONFIG_MIPS32_O32 -#define TIF_32BIT TIF_32BIT_REGS - #define __NR_seccomp_read_32 4003 #define __NR_seccomp_write_32 4004 #define __NR_seccomp_exit_32 4001 @@ -24,8 +22,6 @@ #elif defined(CONFIG_MIPS32_N32) -#define TIF_32BIT _TIF_32BIT_ADDR - #define __NR_seccomp_read_32 6000 #define __NR_seccomp_write_32 6001 #define __NR_seccomp_exit_32 6058 |