Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2203547f authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds
Browse files

kernel: fix new kernel-doc warning in wait.c



Fix new kernel-doc warnings in kernel/wait.c:

  Warning(kernel/wait.c:374): No description found for parameter 'p'
  Warning(kernel/wait.c:374): Excess function parameter 'word' description in 'wake_up_atomic_t'
  Warning(kernel/wait.c:374): Excess function parameter 'bit' description in 'wake_up_atomic_t'

Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b36f4be3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -363,8 +363,7 @@ EXPORT_SYMBOL(out_of_line_wait_on_atomic_t);

/**
 * wake_up_atomic_t - Wake up a waiter on a atomic_t
 * @word: The word being waited on, a kernel virtual address
 * @bit: The bit of the word being waited on
 * @p: The atomic_t being waited on, a kernel virtual address
 *
 * Wake up anyone waiting for the atomic_t to go to zero.
 *