mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] sched/wait: Fix build breakage
@ 2013-10-23 11:40 Thierry Reding
  2013-10-23 12:48 ` [tip:sched/core] " tip-bot for Thierry Reding
  0 siblings, 1 reply; 2+ messages in thread
From: Thierry Reding @ 2013-10-23 11:40 UTC (permalink / raw)
  To: Ingo Molnar, Peter Zijlstra; +Cc: linux-kernel

The wait_event_interruptible_lock_irq() macro is missing a semi-colon
which causes a build failure in the i915 DRM driver.

Signed-off-by: Thierry Reding <treding@nvidia.com>
---
 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 0395985..a6a1ed9 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -765,7 +765,7 @@ do {									\
 	int __ret = 0;							\
 	if (!(condition))						\
 		__ret = __wait_event_interruptible_lock_irq(wq,		\
-						condition, lock,)	\
+						condition, lock,);	\
 	__ret;								\
 })
 
-- 
1.8.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [tip:sched/core] sched/wait: Fix build breakage
  2013-10-23 11:40 [PATCH] sched/wait: Fix build breakage Thierry Reding
@ 2013-10-23 12:48 ` tip-bot for Thierry Reding
  0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Thierry Reding @ 2013-10-23 12:48 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, thierry.reding, hpa, mingo, peterz, treding, tglx

Commit-ID:  92ec11809565cf6429c75204e99e0f583b5c9d7c
Gitweb:     http://git.kernel.org/tip/92ec11809565cf6429c75204e99e0f583b5c9d7c
Author:     Thierry Reding <thierry.reding@gmail.com>
AuthorDate: Wed, 23 Oct 2013 13:40:55 +0200
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 23 Oct 2013 14:44:10 +0200

sched/wait: Fix build breakage

The wait_event_interruptible_lock_irq() macro is missing a
semi-colon which causes a build failure in the i915 DRM driver.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1382528455-29911-1-git-send-email-treding@nvidia.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 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 ec099b0..3b23afa 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -732,7 +732,7 @@ do {									\
 	int __ret = 0;							\
 	if (!(condition))						\
 		__ret = __wait_event_interruptible_lock_irq(wq,		\
-						condition, lock,)	\
+						condition, lock,);	\
 	__ret;								\
 })
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-10-23 12:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-23 11:40 [PATCH] sched/wait: Fix build breakage Thierry Reding
2013-10-23 12:48 ` [tip:sched/core] " tip-bot for Thierry Reding

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome