From 8dcc0f0451fde4c768feb0aa3a7b599167cf600b Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Tue, 22 Oct 2013 17:00:00 +0200 Subject: [PATCH] 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 --- include/linux/wait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/wait.h b/include/linux/wait.h index 7f8caa519128..fcc968087f05 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h @@ -768,7 +768,7 @@ do { \ int __ret = 0; \ if (!(condition)) \ __ret = __wait_event_interruptible_lock_irq(wq, \ - condition, lock,) \ + condition, lock,); \ __ret; \ }) -- 2.39.2