sched/wait: Clean up some documentation warnings

A couple of kerneldoc comments in <linux/wait.h> had incorrect names for
macro parameters, with this unsightly result:

./include/linux/wait.h:555: warning: No description found for parameter 'wq'
./include/linux/wait.h:555: warning: Excess function parameter 'wq_head' description in 'wait_event_interruptible_hrtimeout'
./include/linux/wait.h:759: warning: No description found for parameter 'wq_head'
./include/linux/wait.h:759: warning: Excess function parameter 'wq' description in 'wait_event_killable'

Correct the comments and kill the warnings.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-doc@vger.kernel.org
Link: http://lkml.kernel.org/r/20170724135800.769c4042@lwn.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by Jonathan Corbet and committed by Ingo Molnar 6c423f57 bf50f0e8

Changed files
+4 -4
include
linux
+4 -4
include/linux/wait.h
··· 529 529 530 530 /** 531 531 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses 532 - * @wq_head: the waitqueue to wait on 532 + * @wq: the waitqueue to wait on 533 533 * @condition: a C expression for the event to wait for 534 534 * @timeout: timeout, as a ktime_t 535 535 * 536 536 * The process is put to sleep (TASK_INTERRUPTIBLE) until the 537 537 * @condition evaluates to true or a signal is received. 538 - * The @condition is checked each time the waitqueue @wq_head is woken up. 538 + * The @condition is checked each time the waitqueue @wq is woken up. 539 539 * 540 540 * wake_up() has to be called after changing any variable that could 541 541 * change the result of the wait condition. ··· 735 735 736 736 /** 737 737 * wait_event_killable - sleep until a condition gets true 738 - * @wq: the waitqueue to wait on 738 + * @wq_head: the waitqueue to wait on 739 739 * @condition: a C expression for the event to wait for 740 740 * 741 741 * The process is put to sleep (TASK_KILLABLE) until the 742 742 * @condition evaluates to true or a signal is received. 743 - * The @condition is checked each time the waitqueue @wq is woken up. 743 + * The @condition is checked each time the waitqueue @wq_head is woken up. 744 744 * 745 745 * wake_up() has to be called after changing any variable that could 746 746 * change the result of the wait condition.