From: James Simmons Date: Thu, 17 Nov 2016 19:35:43 +0000 (-0500) Subject: staging: lustre: libcfs: fix aligment issue X-Git-Tag: v4.10-rc1~148^2~207 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=20d63a7adfd15dbf7a58fec4be8203345720bd6d;p=karo-tx-linux.git staging: lustre: libcfs: fix aligment issue Make alignment match open parenthesis for parameters to wait_event_interruptible_exclusive() call. Signed-off-by: James Simmons Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/libcfs/workitem.c b/drivers/staging/lustre/lnet/libcfs/workitem.c index e98c818a14fb..84118b5d1f25 100644 --- a/drivers/staging/lustre/lnet/libcfs/workitem.c +++ b/drivers/staging/lustre/lnet/libcfs/workitem.c @@ -273,7 +273,7 @@ static int cfs_wi_scheduler(void *arg) spin_unlock(&sched->ws_lock); rc = wait_event_interruptible_exclusive(sched->ws_waitq, - !cfs_wi_sched_cansleep(sched)); + !cfs_wi_sched_cansleep(sched)); spin_lock(&sched->ws_lock); }