aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/da9052-i2c.c
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2015-09-29 07:26:07 -0400
committerLee Jones <lee.jones@linaro.org>2015-10-30 13:19:46 -0400
commitad698ea425f90e4d09694c2cf7155cad4d7badb3 (patch)
tree04318c4a476cad73b343b9427c74a708cde0de69 /drivers/mfd/da9052-i2c.c
parenta1c16d71bceec404573ee4ff712f3dc0e58d31c8 (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-i2c.c')
-rw-r--r--drivers/mfd/da9052-i2c.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mfd/da9052-i2c.c b/drivers/mfd/da9052-i2c.c
index 02887001e800..2697ffb08009 100644
--- a/drivers/mfd/da9052-i2c.c
+++ b/drivers/mfd/da9052-i2c.c
@@ -174,11 +174,7 @@ static int da9052_i2c_probe(struct i2c_client *client,
174 return ret; 174 return ret;
175 } 175 }
176 176
177 ret = da9052_device_init(da9052, id->driver_data); 177 return da9052_device_init(da9052, id->driver_data);
178 if (ret != 0)
179 return ret;
180
181 return 0;
182} 178}
183 179
184static int da9052_i2c_remove(struct i2c_client *client) 180static int da9052_i2c_remove(struct i2c_client *client)