Skip to content

Commit

Permalink
iio:adc:ad7766: Fix unnecessary check in ad7766_probe()
Browse files Browse the repository at this point in the history
In the function ad7766_probe(), the return value of
devm_iio_device_register() can be zero or ret, Thus it
is unnecessary to repeated check here.

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
Co-developed-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
Link: https://lore.kernel.org/r/20210511134739.948-1-tangbin@cmss.chinamobile.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
  • Loading branch information
Tang Bin authored and Jonathan Cameron committed May 17, 2021
1 parent 43fa739 commit bd14556
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/iio/adc/ad7766.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,7 @@ static int ad7766_probe(struct spi_device *spi)
if (ret)
return ret;

ret = devm_iio_device_register(&spi->dev, indio_dev);
if (ret)
return ret;
return 0;
return devm_iio_device_register(&spi->dev, indio_dev);
}

static const struct spi_device_id ad7766_id[] = {
Expand Down

0 comments on commit bd14556

Please sign in to comment.