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

Commit aba1a8d7 authored by Brian Masney's avatar Brian Masney Committed by Jonathan Cameron
Browse files

staging: iio: isl29018: combine two return statements into one



Use the return value from isl29018_set_integration_time() as the return
value for isl29018_chip_init() since this is the last piece of work
inside that function.

Signed-off-by: default avatarBrian Masney <masneyb@onstation.org>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 19a00a9d
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -616,12 +616,10 @@ static int isl29018_chip_init(struct isl29018_chip *chip)

	status = isl29018_set_integration_time(chip,
			isl29018_int_utimes[chip->type][chip->int_time]);
	if (status < 0) {
	if (status < 0)
		dev_err(dev, "Init of isl29018 fails\n");
		return status;
	}

	return 0;
	return status;
}

static const struct iio_info isl29018_info = {