>From cdc59c7b26d6ff238e9ab7e27f0d0182e3e73875 Mon Sep 17 00:00:00 2001 From: Daeseok Youn <daeseok.youn@xxxxxxxxx> Date: Thu, 28 Nov 2013 10:19:58 +0900 Subject: [PATCH] kernel/fork.c : fix coding style issues This patch fixes the following errors reported by checkpatch.pl. One of errors is parentheses, another is whitespace issue. Signed-off-by: Daeseok Youn <daeseok.youn@xxxxxxxxx> --- kernel/fork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/fork.c b/kernel/fork.c index 728d5be..56824f1 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -1644,7 +1644,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 @@ -1652,7 +1652,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 -- 1.7.9.5 --- -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html