projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e3c3a0
)
alpha: convert comma to semicolon
author
Zheng Yongjun
<zhengyongjun3@huawei.com>
Wed, 16 Dec 2020 13:12:41 +0000
(21:12 +0800)
committer
Matt Turner
<mattst88@gmail.com>
Mon, 26 Jul 2021 05:32:59 +0000
(22:32 -0700)
Replace a comma between expression statements by a semicolon.
Fixes: cba1ec7e88a0 ("alpha: switch to generic kernel_thread()")
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
arch/alpha/kernel/process.c
patch
|
blob
|
history
diff --git
a/arch/alpha/kernel/process.c
b/arch/alpha/kernel/process.c
index ef0c08ed04811c7e70ba7aeedd78d6c0768fa12d..a5123ea426ce58ed230d0fde4e8dfbb0c4155d84 100644
(file)
--- a/
arch/alpha/kernel/process.c
+++ b/
arch/alpha/kernel/process.c
@@
-256,7
+256,7
@@
int copy_thread(unsigned long clone_flags, unsigned long usp,
childstack->r26 = (unsigned long) ret_from_kernel_thread;
childstack->r9 = usp; /* function */
childstack->r10 = kthread_arg;
- childregs->hae = alpha_mv.hae_cache
,
+ childregs->hae = alpha_mv.hae_cache
;
childti->pcb.usp = 0;
return 0;
}