Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e56293b1 authored by Stefan Oberhumer's avatar Stefan Oberhumer Committed by Ralf Baechle
Browse files

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: default avatarRalf Baechle <ralf@linux-mips.org>
parent e1c87d2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;