mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 14:43:03 +00:00
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:
parent
c2d816443e
commit
92ec118095
@ -732,7 +732,7 @@ do { \
|
||||
int __ret = 0; \
|
||||
if (!(condition)) \
|
||||
__ret = __wait_event_interruptible_lock_irq(wq, \
|
||||
condition, lock,) \
|
||||
condition, lock,); \
|
||||
__ret; \
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user