diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-24 07:53:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-10-24 09:46:33 -0400 |
commit | e2f5543a73eaee370a0e0ed280aa71d3693ded2e (patch) | |
tree | 1f960b8f05f84953a99f01f3aaea330d229227d6 /drivers/iio/dac | |
parent | 35b9c0b18eaa81d96841c50452f74ed1a7aa4ae7 (diff) |
iio: dac: ad5755: Remove redundant code
The if check is redundant as the value obtained from
iio_device_register() is already in the required format.
Error messages are already printed by iio_device_register();
hence not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/dac')
-rw-r--r-- | drivers/iio/dac/ad5755.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/iio/dac/ad5755.c b/drivers/iio/dac/ad5755.c index bd31dbc340c1..9a78d5abb2f6 100644 --- a/drivers/iio/dac/ad5755.c +++ b/drivers/iio/dac/ad5755.c | |||
@@ -589,13 +589,7 @@ static int ad5755_probe(struct spi_device *spi) | |||
589 | if (ret) | 589 | if (ret) |
590 | return ret; | 590 | return ret; |
591 | 591 | ||
592 | ret = iio_device_register(indio_dev); | 592 | return iio_device_register(indio_dev); |
593 | if (ret) { | ||
594 | dev_err(&spi->dev, "Failed to register iio device: %d\n", ret); | ||
595 | return ret; | ||
596 | } | ||
597 | |||
598 | return 0; | ||
599 | } | 593 | } |
600 | 594 | ||
601 | static int ad5755_remove(struct spi_device *spi) | 595 | static int ad5755_remove(struct spi_device *spi) |