Commit 1a30295a authored by Jonathan Cameron's avatar Jonathan Cameron

iio:prox:sx9500 trivial simplification of return path in init function.

Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Cc: Vlad Dogaru <vlad.dogaru@intel.com>
parent b91617ea
......@@ -859,11 +859,7 @@ static int sx9500_init_device(struct iio_dev *indio_dev)
return ret;
}
ret = sx9500_init_compensation(indio_dev);
if (ret < 0)
return ret;
return 0;
return sx9500_init_compensation(indio_dev);
}
static void sx9500_gpio_probe(struct i2c_client *client,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment