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

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