]> Pileus Git - ~andy/linux/commitdiff
iio: dac: ad5755: Remove redundant code
authorSachin Kamat <sachin.kamat@linaro.org>
Thu, 24 Oct 2013 11:53:00 +0000 (12:53 +0100)
committerJonathan Cameron <jic23@kernel.org>
Thu, 24 Oct 2013 13:46:33 +0000 (14:46 +0100)
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>
drivers/iio/dac/ad5755.c

index bd31dbc340c106cb7ebfc44b5a2e14188fd9efc2..9a78d5abb2f6646579fe6ffea21acd51dce91ca7 100644 (file)
@@ -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)