diff options
author | Stafford Horne <shorne@gmail.com> | 2016-02-23 08:39:28 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-02-24 03:09:45 -0500 |
commit | f4bcfa1da6fdcbc7a0854a28603bffc3c5656332 (patch) | |
tree | ad5b0542a38d4d08d8b8682f944ecc0e04939ce1 | |
parent | 3223d052b79eb9b620d170584c417d60a8bfd649 (diff) |
sched/wait: Fix wait_event_freezable() documentation
I noticed the comment label 'wait_event' was wrong.
Signed-off-by: Stafford Horne <shorne@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1456234768-24933-1-git-send-email-shorne@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | include/linux/wait.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h index ae71a769b89e..27d7a0ab5da3 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
@@ -338,7 +338,7 @@ do { \ | |||
338 | schedule(); try_to_freeze()) | 338 | schedule(); try_to_freeze()) |
339 | 339 | ||
340 | /** | 340 | /** |
341 | * wait_event - sleep (or freeze) until a condition gets true | 341 | * wait_event_freezable - sleep (or freeze) until a condition gets true |
342 | * @wq: the waitqueue to wait on | 342 | * @wq: the waitqueue to wait on |
343 | * @condition: a C expression for the event to wait for | 343 | * @condition: a C expression for the event to wait for |
344 | * | 344 | * |