From: Oleg Nesterov Date: Wed, 29 Mar 2006 00:11:10 +0000 (-0800) Subject: [PATCH] wait_for_helper: trivial style cleanup X-Git-Tag: firefly_0821_release~36614 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8292d633add73d40eda1d26089e2fc758944ac7c;p=firefly-linux-kernel-4.4.55.git [PATCH] wait_for_helper: trivial style cleanup Use NULL instead of (... *)0 Signed-off-by: Oleg Nesterov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/kmod.c b/kernel/kmod.c index 51a892063aaa..20a997c73c3d 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c @@ -170,7 +170,7 @@ static int wait_for_helper(void *data) sa.sa.sa_handler = SIG_IGN; sa.sa.sa_flags = 0; siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD)); - do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0); + do_sigaction(SIGCHLD, &sa, NULL); allow_signal(SIGCHLD); pid = kernel_thread(____call_usermodehelper, sub_info, SIGCHLD);