提交 35b9c0b1 编写于 作者: S Sachin Kamat 提交者: Jonathan Cameron

iio: dac: ad5421: Remove redundant code

The if check is redundant as the value obtained from
iio_device_register() is already in the required format.
Hence return the function directly. Error messages are already
printed by iio_device_register(); hence not needed.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 ae0f29d1
...@@ -514,13 +514,7 @@ static int ad5421_probe(struct spi_device *spi) ...@@ -514,13 +514,7 @@ static int ad5421_probe(struct spi_device *spi)
return ret; return ret;
} }
ret = iio_device_register(indio_dev); return iio_device_register(indio_dev);
if (ret) {
dev_err(&spi->dev, "Failed to register iio device: %d\n", ret);
return ret;
}
return 0;
} }
static int ad5421_remove(struct spi_device *spi) static int ad5421_remove(struct spi_device *spi)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册