From: Randy Dunlap Date: Sat, 11 Jan 2025 06:30:08 +0000 (-0800) Subject: kthread: modify kernel-doc function name to match code X-Git-Tag: v6.14-rc1~173^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8b4bf4ea04dd96fe43f6010c614149aba4c9b91;p=thirdparty%2Fkernel%2Flinux.git kthread: modify kernel-doc function name to match code kthread.c:1073: warning: expecting prototype for kthread_create_worker(). Prototype was for kthread_create_worker_on_node() instead Fixes: 41f70d8e1634 ("kthread: Unify kthread_create_on_cpu() and kthread_create_worker_on_cpu() automatic format") Signed-off-by: Randy Dunlap Cc: Frederic Weisbecker Cc: Andrew Morton Signed-off-by: Frederic Weisbecker --- diff --git a/kernel/kthread.c b/kernel/kthread.c index 922f15762ec3d..de9dad03885be 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c @@ -1058,7 +1058,7 @@ fail_task: } /** - * kthread_create_worker - create a kthread worker + * kthread_create_worker_on_node - create a kthread worker * @flags: flags modifying the default behavior of the worker * @node: task structure for the thread is allocated on this node * @namefmt: printf-style name for the kthread worker (task).