aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/process.c
diff options
context:
space:
mode:
authorZheng Yongjun <zhengyongjun3@huawei.com>2020-12-16 21:12:41 +0800
committerMatt Turner <mattst88@gmail.com>2021-07-25 22:32:59 -0700
commitf0443da1d8560f4c664ab0f9a900ed69e9aaeb14 (patch)
tree773cedf7afaccc3a34895b6e53b72053e89488be /arch/alpha/kernel/process.c
parentalpha: remove undef inline in compiler.h (diff)
downloadlinux-dev-f0443da1d8560f4c664ab0f9a900ed69e9aaeb14.tar.xz
linux-dev-f0443da1d8560f4c664ab0f9a900ed69e9aaeb14.zip
alpha: convert comma to semicolon
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>
Diffstat (limited to '')
-rw-r--r--arch/alpha/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/kernel/process.c b/arch/alpha/kernel/process.c
index ef0c08ed0481..a5123ea426ce 100644
--- 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;
}