Skip to content

Commit

Permalink
iio: dac: ad5755: Remove redundant code
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
  • Loading branch information
Sachin Kamat authored and jic23 committed Oct 24, 2013
1 parent 35b9c0b commit e2f5543
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions drivers/iio/dac/ad5755.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,13 +589,7 @@ static int ad5755_probe(struct spi_device *spi)
if (ret)
return ret;

ret = iio_device_register(indio_dev);
if (ret) {
dev_err(&spi->dev, "Failed to register iio device: %d\n", ret);
return ret;
}

return 0;
return iio_device_register(indio_dev);
}

static int ad5755_remove(struct spi_device *spi)
Expand Down

0 comments on commit e2f5543

Please sign in to comment.