Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0203255 authored by Sachin Kamat's avatar Sachin Kamat Committed by Jonathan Cameron
Browse files

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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent a9b68511
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -179,11 +179,7 @@ static int vcnl4000_probe(struct i2c_client *client,
	indio_dev->name = VCNL4000_DRV_NAME;
	indio_dev->modes = INDIO_DIRECT_MODE;

	ret = iio_device_register(indio_dev);
	if (ret < 0)
		return ret;

	return 0;
	return iio_device_register(indio_dev);
}

static int vcnl4000_remove(struct i2c_client *client)