lan78xx: Connect phy early
[linux-2.6-microblaze.git] / kernel / umh.c
index 18e5fa4..f76b3ff 100644 (file)
@@ -118,7 +118,7 @@ static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
 {
        pid_t pid;
 
-       /* If SIGCLD is ignored sys_wait4 won't populate the status. */
+       /* If SIGCLD is ignored kernel_wait4 won't populate the status. */
        kernel_sigaction(SIGCHLD, SIG_DFL);
        pid = kernel_thread(call_usermodehelper_exec_async, sub_info, SIGCHLD);
        if (pid < 0) {
@@ -135,7 +135,7 @@ static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
                 *
                 * Thus the __user pointer cast is valid here.
                 */
-               sys_wait4(pid, (int __user *)&ret, 0, NULL);
+               kernel_wait4(pid, (int __user *)&ret, 0, NULL);
 
                /*
                 * If ret is 0, either call_usermodehelper_exec_async failed and