diff options
author | Thierry Reding <[email protected]> | 2013-10-23 13:40:55 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-10-23 14:44:10 +0200 |
commit | 92ec11809565cf6429c75204e99e0f583b5c9d7c (patch) | |
tree | cc0f9678b17b8b02ded386c3ff605423dd593fa9 | |
parent | c2d816443ef305aba8eaf0bf368f4d3d87494f06 (diff) |
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 <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | include/linux/wait.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h index ec099b03e11b..3b23afa04d6b 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; \ }) |