From: Thierry Reding Date: Tue, 22 Oct 2013 15:00:00 +0000 (+0200) Subject: sched/wait: Fix build breakage X-Git-Tag: next-20131024~8 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-linux.git;a=commitdiff_plain;h=8dcc0f0451fde4c768feb0aa3a7b599167cf600b 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 --- 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; \ })