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>
This commit is contained in:
Thierry Reding 2013-10-23 13:40:55 +02:00 committed by Ingo Molnar
parent c2d816443e
commit 92ec118095
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ do { \
int __ret = 0; \
if (!(condition)) \
__ret = __wait_event_interruptible_lock_irq(wq, \
condition, lock,) \
condition, lock,); \
__ret; \
})