Skip to content

Commit f0443da

Browse files
Zheng Yongjunmattst88
authored andcommitted
alpha: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: cba1ec7 ("alpha: switch to generic kernel_thread()") Signed-off-by: Zheng Yongjun <[email protected]> Signed-off-by: Matt Turner <[email protected]>
1 parent 5e3c3a0 commit f0443da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/alpha/kernel/process.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp,
256256
childstack->r26 = (unsigned long) ret_from_kernel_thread;
257257
childstack->r9 = usp; /* function */
258258
childstack->r10 = kthread_arg;
259-
childregs->hae = alpha_mv.hae_cache,
259+
childregs->hae = alpha_mv.hae_cache;
260260
childti->pcb.usp = 0;
261261
return 0;
262262
}

0 commit comments

Comments
 (0)