aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorStefan Oberhumer <stefan@obssys.com>2011-01-17 03:19:53 -0500
committerRalf Baechle <ralf@linux-mips.org>2011-03-14 16:07:25 -0400
commite56293b129607be089f2c12906d709e3c84b68c4 (patch)
tree9cf33f0305c4ad54d5bf4623b578d802c2e4c7f9 /arch
parente1c87d2a5567c7940d129a6045efadc4b8c0f888 (diff)
MIPS: Clear the correct flag in sysmips(MIPS_FIXADE, ...).
The sysmips(MIPS_FIXADE, ...) case contains an obvious copy-and-paste error in the handling of the TIF_LOGADE flag. Fix that Patchwork: https://patchwork.linux-mips.org/patch/1997/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c
index 1dc6edff45e0..cde2a32c1043 100644
--- a/arch/mips/kernel/syscall.c
+++ b/arch/mips/kernel/syscall.c
@@ -405,7 +405,7 @@ _sys_sysmips(nabi_no_regargs struct pt_regs regs)
405 if (arg1 & 2) 405 if (arg1 & 2)
406 set_thread_flag(TIF_LOGADE); 406 set_thread_flag(TIF_LOGADE);
407 else 407 else
408 clear_thread_flag(TIF_FIXADE); 408 clear_thread_flag(TIF_LOGADE);
409 409
410 return 0; 410 return 0;
411 411