Move assignment out of if condition found by checkpatch.pl.
ERROR: do not use assignment in if condition

Signed-off-by: Chaehyun Lim <chaehyun....@gmail.com>
---
 drivers/staging/most/aim-cdev/cdev.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/most/aim-cdev/cdev.c 
b/drivers/staging/most/aim-cdev/cdev.c
index 0cde97d..453fbc6 100644
--- a/drivers/staging/most/aim-cdev/cdev.c
+++ b/drivers/staging/most/aim-cdev/cdev.c
@@ -170,11 +170,9 @@ static ssize_t aim_write(struct file *filp, const char 
__user *buf,
        if (!mbo && channel->dev) {
                if ((filp->f_flags & O_NONBLOCK))
                        return -EAGAIN;
+               mbo = most_get_mbo(channel->iface, channel->channel_id);
                if (wait_event_interruptible(
-                           channel->wq,
-                           (mbo = most_get_mbo(channel->iface,
-                                               channel->channel_id)) ||
-                           (channel->dev == NULL)))
+                           channel->wq, mbo || (channel->dev == NULL)))
                        return -ERESTARTSYS;
        }
 
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to