exit/kthread: Fix the kerneldoc comment for kthread_complete_and_exit

I misspelled kthread_complete_and_exit in the kernel doc comment fix
it.

Link: https://lkml.kernel.org/r/202112141329.KBkyJ5ql-lkp@intel.com
Link: https://lkml.kernel.org/r/202112141422.Cykr6YUS-lkp@intel.com
Reported-by: kernel test robot <lkp@intel.com>
Fixes: cead185526 ("exit: Rename complete_and_exit to kthread_complete_and_exit")
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
Eric W. Biederman 2021-12-14 11:25:01 -06:00
parent 6b1248798e
commit 5eb6f22823

View file

@ -294,7 +294,7 @@ void __noreturn kthread_exit(long result)
}
/**
* kthread_complete_and exit - Exit the current kthread.
* kthread_complete_and_exit - Exit the current kthread.
* @comp: Completion to complete
* @code: The integer value to return to kthread_stop().
*