Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sched: Fix warning on make htmldocs caused by wait.h

Missing "@" in include/linux/wait.h cause "make htmldocs" failed
with following warning messages.

Warning(/home/iida/Repo/linux-next//include/linux/wait.h:304):
No description found for parameter 'cmd1'
Warning(/home/iida/Repo/linux-next//include/linux/wait.h:304):
No description found for parameter 'cmd2'

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Masanari Iida and committed by
Jiri Kosina
f434f7af 24755e2e

+2 -2
+2 -2
include/linux/wait.h
··· 286 286 * wait_event_cmd - sleep until a condition gets true 287 287 * @wq: the waitqueue to wait on 288 288 * @condition: a C expression for the event to wait for 289 - * cmd1: the command will be executed before sleep 290 - * cmd2: the command will be executed after sleep 289 + * @cmd1: the command will be executed before sleep 290 + * @cmd2: the command will be executed after sleep 291 291 * 292 292 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the 293 293 * @condition evaluates to true. The @condition is checked each time