projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1c87d2
)
MIPS: Clear the correct flag in sysmips(MIPS_FIXADE, ...).
author
Stefan Oberhumer
<stefan@obssys.com>
Mon, 17 Jan 2011 08:19:53 +0000
(09:19 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Mon, 14 Mar 2011 20:07:25 +0000
(21:07 +0100)
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>
arch/mips/kernel/syscall.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/kernel/syscall.c
b/arch/mips/kernel/syscall.c
index 1dc6edff45e08a604377862ec3d8980c6b333cf0..cde2a32c1043914894102989154d515aa1c82d31 100644
(file)
--- 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_
FIX
ADE);
+ clear_thread_flag(TIF_
LOG
ADE);
return 0;