From: Stefan Oberhumer Date: Mon, 17 Jan 2011 08:19:53 +0000 (+0100) Subject: MIPS: Clear the correct flag in sysmips(MIPS_FIXADE, ...). X-Git-Tag: v2.6.38~2^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e56293b129607be089f2c12906d709e3c84b68c4;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 --- diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index 1dc6edf..cde2a32 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) if (arg1 & 2) set_thread_flag(TIF_LOGADE); else - clear_thread_flag(TIF_FIXADE); + clear_thread_flag(TIF_LOGADE); return 0;