From: Daeseok Youn Date: Fri, 3 Jan 2014 03:10:30 +0000 (+1100) Subject: kernel/fork.c: fix coding style issues X-Git-Tag: next-20140106~2^2~32 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f717fc929f699efb5e3242c18c38dd7095e7a293;p=karo-tx-linux.git kernel/fork.c: fix coding style issues Fix errors reported by checkpatch.pl. One error is parentheses, the other is a whitespace issue. Signed-off-by: Daeseok Youn Signed-off-by: Andrew Morton --- diff --git a/kernel/fork.c b/kernel/fork.c index 1fcc657d8826..26224886fa21 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -1652,7 +1652,7 @@ SYSCALL_DEFINE0(fork) return do_fork(SIGCHLD, 0, 0, NULL, NULL); #else /* can not support in nommu mode */ - return(-EINVAL); + return -EINVAL; #endif } #endif @@ -1660,7 +1660,7 @@ SYSCALL_DEFINE0(fork) #ifdef __ARCH_WANT_SYS_VFORK SYSCALL_DEFINE0(vfork) { - return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, + return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, 0, NULL, NULL); } #endif