From: Lucas Oshiro Date: Fri, 8 Mar 2019 19:46:52 +0000 (-0300) Subject: iio:potentiostat:lmp91000: remove unnecessary parentheses X-Git-Tag: for-linus-20190516~76^2~149^2~83 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=681ca4477933017e77188dcba74035823e823152;p=linux-block.git iio:potentiostat:lmp91000: remove unnecessary parentheses Remove unnecessary parentheses on line 116. Signed-off-by: Lucas Oshiro Signed-off-by: Anderson Reis Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/potentiostat/lmp91000.c b/drivers/iio/potentiostat/lmp91000.c index 90e895adf997..03d277621861 100644 --- a/drivers/iio/potentiostat/lmp91000.c +++ b/drivers/iio/potentiostat/lmp91000.c @@ -113,7 +113,7 @@ static int lmp91000_read(struct lmp91000_data *data, int channel, int *val) return -EINVAL; /* delay till first temperature reading is complete */ - if ((state != channel) && (channel == LMP91000_REG_MODECN_TEMP)) + if (state != channel && channel == LMP91000_REG_MODECN_TEMP) usleep_range(3000, 4000); data->chan_select = channel != LMP91000_REG_MODECN_3LEAD;