Commit ff466a5b authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: remove constants from comparisons

This patch removes constants from comparisons and fixes checkpatch warnings
about constants being put in the wrong place inside a comparison.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9158d33a
...@@ -134,7 +134,7 @@ static int aim_close(struct inode *inode, struct file *filp) ...@@ -134,7 +134,7 @@ static int aim_close(struct inode *inode, struct file *filp)
} }
mutex_unlock(&channel->io_mutex); mutex_unlock(&channel->io_mutex);
while (0 != kfifo_out((struct kfifo *)&channel->fifo, &mbo, 1)) while (kfifo_out((struct kfifo *)&channel->fifo, &mbo, 1))
most_put_mbo(mbo); most_put_mbo(mbo);
if (channel->keep_mbo) if (channel->keep_mbo)
most_put_mbo(channel->stacked_mbo); most_put_mbo(channel->stacked_mbo);
...@@ -232,7 +232,7 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset) ...@@ -232,7 +232,7 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset)
channel->keep_mbo = false; channel->keep_mbo = false;
goto start_copy; goto start_copy;
} }
while ((0 == kfifo_out(&channel->fifo, &mbo, 1)) while ((!kfifo_out(&channel->fifo, &mbo, 1))
&& (channel->dev)) { && (channel->dev)) {
if (filp->f_flags & O_NONBLOCK) if (filp->f_flags & O_NONBLOCK)
return -EAGAIN; return -EAGAIN;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment