aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2010-02-09 15:07:40 +1100
committerJiri Kosina <jkosina@suse.cz>2010-02-09 11:28:48 +0100
commitb80109e256bc17ed66c9d559175f087b03ca2a8e (patch)
treea4506b145b4a7a5f5d137fa2476e850d477a1ab2 /kernel
parent3ad2f3fbb961429d2aa627465ae4829758bc7e07 (diff)
downloadkernel_samsung_smdk4412-b80109e256bc17ed66c9d559175f087b03ca2a8e.zip
kernel_samsung_smdk4412-b80109e256bc17ed66c9d559175f087b03ca2a8e.tar.gz
kernel_samsung_smdk4412-b80109e256bc17ed66c9d559175f087b03ca2a8e.tar.bz2
Remove reference to kthread_create_on_cpu
kthread_create_on_cpu doesn't exist so update a comment in kthread.c to reflect this. Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/kthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kthread.c b/kernel/kthread.c
index fbb6222..82ed0ea 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -101,7 +101,7 @@ static void create_kthread(struct kthread_create_info *create)
*
* Description: This helper function creates and names a kernel
* thread. The thread will be stopped: use wake_up_process() to start
- * it. See also kthread_run(), kthread_create_on_cpu().
+ * it. See also kthread_run().
*
* When woken, the thread will run @threadfn() with @data as its
* argument. @threadfn() can either call do_exit() directly if it is a