Unverified Commit a5455c91 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

regulator: pv88090: Fix array out-of-bounds access



Fix off-by-one while iterating current_limits array.
The valid index should be 0 ~ n_current_limits -1.

Fixes: c90456e3 ("regulator: pv88090: new regulator driver")
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3c413f59
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ static int pv88090_set_current_limit(struct regulator_dev *rdev, int min,
	int i;

	/* search for closest to maximum */
	for (i = info->n_current_limits; i >= 0; i--) {
	for (i = info->n_current_limits - 1; i >= 0; i--) {
		if (min <= info->current_limits[i]
			&& max >= info->current_limits[i]) {
			return regmap_update_bits(rdev->regmap,