projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2d8164
)
sched/wait: Fix build breakage
author
Thierry Reding
<thierry.reding@gmail.com>
Wed, 23 Oct 2013 11:40:55 +0000
(13:40 +0200)
committer
Ingo Molnar
<mingo@kernel.org>
Wed, 23 Oct 2013 12:44:10 +0000
(14:44 +0200)
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>
include/linux/wait.h
patch
|
blob
|
blame
|
history
diff --git
a/include/linux/wait.h
b/include/linux/wait.h
index ec099b03e11b654e4558dd814e4a373deff13238..3b23afa04d6bc700ebb4ff3c33cbf78075e905bb 100644
(file)
--- 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; \
})