aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/light
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-10-24 07:53:00 -0400
committerJonathan Cameron <jic23@kernel.org>2013-10-24 09:48:14 -0400
commite0203255415844d73b5f4bec9bc72903c8e49d8d (patch)
tree0a9ae106515ab9b98d9a121c3dc61d2b5ab5bf92 /drivers/iio/light
parenta9b685110036e27ccd9ed0d71e08bb66f3fed6fd (diff)
iio: light: vcnl4000: Remove redundant code
The if check is redundant as the value obtained from iio_device_register() is already in the required format. Hence return the function directly. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/light')
-rw-r--r--drivers/iio/light/vcnl4000.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/iio/light/vcnl4000.c b/drivers/iio/light/vcnl4000.c
index 2bb304215b1d..ecb3341ef9c0 100644
--- a/drivers/iio/light/vcnl4000.c
+++ b/drivers/iio/light/vcnl4000.c
@@ -179,11 +179,7 @@ static int vcnl4000_probe(struct i2c_client *client,
179 indio_dev->name = VCNL4000_DRV_NAME; 179 indio_dev->name = VCNL4000_DRV_NAME;
180 indio_dev->modes = INDIO_DIRECT_MODE; 180 indio_dev->modes = INDIO_DIRECT_MODE;
181 181
182 ret = iio_device_register(indio_dev); 182 return iio_device_register(indio_dev);
183 if (ret < 0)
184 return ret;
185
186 return 0;
187} 183}
188 184
189static int vcnl4000_remove(struct i2c_client *client) 185static int vcnl4000_remove(struct i2c_client *client)