diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-09-29 07:26:07 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-10-30 13:19:46 -0400 |
commit | ad698ea425f90e4d09694c2cf7155cad4d7badb3 (patch) | |
tree | 04318c4a476cad73b343b9427c74a708cde0de69 /drivers/mfd/da9052-spi.c | |
parent | a1c16d71bceec404573ee4ff712f3dc0e58d31c8 (diff) |
mfd: da9052: Simplify function return logic
The invoked functions already return zero on success or a negative
errno code so there is no need to open code the logic in the caller.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/da9052-spi.c')
-rw-r--r-- | drivers/mfd/da9052-spi.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mfd/da9052-spi.c b/drivers/mfd/da9052-spi.c index b5de8a6856c0..0f5e2c2858c1 100644 --- a/drivers/mfd/da9052-spi.c +++ b/drivers/mfd/da9052-spi.c | |||
@@ -56,11 +56,7 @@ static int da9052_spi_probe(struct spi_device *spi) | |||
56 | return ret; | 56 | return ret; |
57 | } | 57 | } |
58 | 58 | ||
59 | ret = da9052_device_init(da9052, id->driver_data); | 59 | return da9052_device_init(da9052, id->driver_data); |
60 | if (ret != 0) | ||
61 | return ret; | ||
62 | |||
63 | return 0; | ||
64 | } | 60 | } |
65 | 61 | ||
66 | static int da9052_spi_remove(struct spi_device *spi) | 62 | static int da9052_spi_remove(struct spi_device *spi) |