projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7d41a9
)
MIPS: MT: Fix build error iFPU affinity code
author
Ralf Baechle
<
[email protected]
>
Sun, 24 Oct 2010 21:23:50 +0000
(22:23 +0100)
committer
Linus Torvalds
<
[email protected]
>
Mon, 25 Oct 2010 15:12:27 +0000
(08:12 -0700)
Commit
b0ae19811375
("security: remove unused parameter from
security_task_setscheduler()") broke the build of
arch/mips/kernel/mips-mt-fpaff.c. The function arguments were
unnecessary, not the semicolon ...
Signed-off-by: Ralf Baechle <
[email protected]
>
Acked-by: KOSAKI Motohiro <
[email protected]
>
Acked-by: James Morris <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/mips/kernel/mips-mt-fpaff.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/mips-mt-fpaff.c
b/arch/mips/kernel/mips-mt-fpaff.c
index 9a526ba6f25766f3ab6b58bc70b7f792c4011ff9..802e6160f37e987802ac60b2e1cec193b4c832af 100644
(file)
--- a/
arch/mips/kernel/mips-mt-fpaff.c
+++ b/
arch/mips/kernel/mips-mt-fpaff.c
@@
-103,7
+103,7
@@
asmlinkage long mipsmt_sys_sched_setaffinity(pid_t pid, unsigned int len,
if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
goto out_unlock;
- retval = security_task_setscheduler(p)
+ retval = security_task_setscheduler(p)
;
if (retval)
goto out_unlock;