staging: iio: Remove parentheses on the right hand side of assignment
Remove parentheses on the right hand side of assignment as they are not needed. Semantic patch used: @@ expression a, b, c, d; @@ ( a = (c == d) | a = - ( b - ) ) Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>pull/291/head
parent
8052d7dd4e
commit
77cb59a42b
|
|
@ -567,7 +567,7 @@ static int lis3l02dq_read_event_config(struct iio_dev *indio_dev,
|
|||
{
|
||||
u8 val;
|
||||
int ret;
|
||||
u8 mask = (1 << (chan->channel2 * 2 + (dir == IIO_EV_DIR_RISING)));
|
||||
u8 mask = 1 << (chan->channel2 * 2 + (dir == IIO_EV_DIR_RISING));
|
||||
|
||||
ret = lis3l02dq_spi_read_reg_8(indio_dev,
|
||||
LIS3L02DQ_REG_WAKE_UP_CFG_ADDR,
|
||||
|
|
@ -622,7 +622,7 @@ static int lis3l02dq_write_event_config(struct iio_dev *indio_dev,
|
|||
u8 val, control;
|
||||
u8 currentlyset;
|
||||
bool changed = false;
|
||||
u8 mask = (1 << (chan->channel2 * 2 + (dir == IIO_EV_DIR_RISING)));
|
||||
u8 mask = 1 << (chan->channel2 * 2 + (dir == IIO_EV_DIR_RISING));
|
||||
|
||||
mutex_lock(&indio_dev->mlock);
|
||||
/* read current control */
|
||||
|
|
|
|||
|
|
@ -529,8 +529,8 @@ static int ad7746_write_raw(struct iio_dev *indio_dev,
|
|||
|
||||
val /= 338646;
|
||||
|
||||
chip->capdac[chan->channel][chan->differential] = (val > 0 ?
|
||||
AD7746_CAPDAC_DACP(val) | AD7746_CAPDAC_DACEN : 0);
|
||||
chip->capdac[chan->channel][chan->differential] = val > 0 ?
|
||||
AD7746_CAPDAC_DACP(val) | AD7746_CAPDAC_DACEN : 0;
|
||||
|
||||
ret = i2c_smbus_write_byte_data(chip->client,
|
||||
AD7746_REG_CAPDACA,
|
||||
|
|
|
|||
Loading…
Reference in New Issue