Commit f0443da1 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Matt Turner

alpha: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Fixes: cba1ec7e ("alpha: switch to generic kernel_thread()")
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarMatt Turner <mattst88@gmail.com>
parent 5e3c3a0a
...@@ -256,7 +256,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, ...@@ -256,7 +256,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp,
childstack->r26 = (unsigned long) ret_from_kernel_thread; childstack->r26 = (unsigned long) ret_from_kernel_thread;
childstack->r9 = usp; /* function */ childstack->r9 = usp; /* function */
childstack->r10 = kthread_arg; childstack->r10 = kthread_arg;
childregs->hae = alpha_mv.hae_cache, childregs->hae = alpha_mv.hae_cache;
childti->pcb.usp = 0; childti->pcb.usp = 0;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment