[tip:sched/core] sched/wait: Fix wait_event_freezable() documentation

From: tip-bot for Stafford Horne
Date: Thu Feb 25 2016 - 00:55:14 EST


Commit-ID: f4bcfa1da6fdcbc7a0854a28603bffc3c5656332
Gitweb: http://git.kernel.org/tip/f4bcfa1da6fdcbc7a0854a28603bffc3c5656332
Author: Stafford Horne <shorne@xxxxxxxxx>
AuthorDate: Tue, 23 Feb 2016 22:39:28 +0900
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitDate: Wed, 24 Feb 2016 09:09:45 +0100

sched/wait: Fix wait_event_freezable() documentation

I noticed the comment label 'wait_event' was wrong.

Signed-off-by: Stafford Horne <shorne@xxxxxxxxx>
Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Link: http://lkml.kernel.org/r/1456234768-24933-1-git-send-email-shorne@xxxxxxxxx
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
---
include/linux/wait.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/wait.h b/include/linux/wait.h
index ae71a76..27d7a0a 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -338,7 +338,7 @@ do { \
schedule(); try_to_freeze())

/**
- * wait_event - sleep (or freeze) until a condition gets true
+ * wait_event_freezable - sleep (or freeze) until a condition gets true
* @wq: the waitqueue to wait on
* @condition: a C expression for the event to wait for
*