diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-10-23 13:40:55 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-10-23 14:44:10 +0200 |
commit | 92ec11809565cf6429c75204e99e0f583b5c9d7c (patch) | |
tree | cc0f9678b17b8b02ded386c3ff605423dd593fa9 /include/linux/wait.h | |
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 <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>
Diffstat (limited to 'include/linux/wait.h')
-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; \ }) |