From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932167AbcBYFzJ (ORCPT ); Thu, 25 Feb 2016 00:55:09 -0500 Received: from torg.zytor.com ([198.137.202.12]:54462 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1759783AbcBYFzF (ORCPT ); Thu, 25 Feb 2016 00:55:05 -0500 Date: Wed, 24 Feb 2016 21:54:31 -0800 From: tip-bot for Stafford Horne Message-ID: Cc: tglx@linutronix.de, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, mingo@kernel.org, shorne@gmail.com, hpa@zytor.com, peterz@infradead.org Reply-To: linux-kernel@vger.kernel.org, tglx@linutronix.de, torvalds@linux-foundation.org, peterz@infradead.org, hpa@zytor.com, shorne@gmail.com, mingo@kernel.org In-Reply-To: <1456234768-24933-1-git-send-email-shorne@gmail.com> References: <1456234768-24933-1-git-send-email-shorne@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/wait: Fix wait_event_freezable() documentation Git-Commit-ID: f4bcfa1da6fdcbc7a0854a28603bffc3c5656332 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: f4bcfa1da6fdcbc7a0854a28603bffc3c5656332 Gitweb: http://git.kernel.org/tip/f4bcfa1da6fdcbc7a0854a28603bffc3c5656332 Author: Stafford Horne AuthorDate: Tue, 23 Feb 2016 22:39:28 +0900 Committer: Ingo Molnar 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 Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1456234768-24933-1-git-send-email-shorne@gmail.com Signed-off-by: Ingo Molnar --- 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 *