From: Alexander Vorwerk Date: Thu, 5 Jan 2023 02:53:51 +0000 (+0100) Subject: drivers: iio: cdc: Drop redundant if check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=eae3e6f1c86f4499325cdaa3df4b90cd1f32464c;p=linux.git drivers: iio: cdc: Drop redundant if check Reported-by: kernel test robot Signed-off-by: Alexander Vorwerk Link: https://lore.kernel.org/r/20230105025351.12099-1-zabe@avorwerk.net Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/cdc/ad7746.c b/drivers/iio/cdc/ad7746.c index 6f68651ce1d5a..a1db5469f2d1e 100644 --- a/drivers/iio/cdc/ad7746.c +++ b/drivers/iio/cdc/ad7746.c @@ -285,8 +285,7 @@ static int ad7746_select_channel(struct iio_dev *indio_dev, if (ret < 0) return ret; - if (chip->capdac_set != chan->channel) - chip->capdac_set = chan->channel; + chip->capdac_set = chan->channel; break; case IIO_VOLTAGE: case IIO_TEMP: