Skip to content

Commit

Permalink
sched/wait: Fix build breakage
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thierry Reding authored and Ingo Molnar committed Oct 23, 2013
1 parent c2d8164 commit 92ec118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/wait.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ do { \
int __ret = 0; \
if (!(condition)) \
__ret = __wait_event_interruptible_lock_irq(wq, \
condition, lock,) \
condition, lock,); \
__ret; \
})

Expand Down

0 comments on commit 92ec118

Please sign in to comment.