Commit d3d1a6a7 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

regulator: max77650: Fix set_current_limit implementation

Current code always return error, fix it.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Reviewed-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e5c8ba06
...@@ -243,7 +243,7 @@ static int max77650_regulator_set_current_limit(struct regulator_dev *rdev, ...@@ -243,7 +243,7 @@ static int max77650_regulator_set_current_limit(struct regulator_dev *rdev,
{ {
struct max77650_regulator_desc *rdesc; struct max77650_regulator_desc *rdesc;
struct regmap *map; struct regmap *map;
int rv, i, limit; int i, limit;
rdesc = rdev_get_drvdata(rdev); rdesc = rdev_get_drvdata(rdev);
map = rdev_get_regmap(rdev); map = rdev_get_regmap(rdev);
...@@ -252,11 +252,9 @@ static int max77650_regulator_set_current_limit(struct regulator_dev *rdev, ...@@ -252,11 +252,9 @@ static int max77650_regulator_set_current_limit(struct regulator_dev *rdev,
limit = max77650_current_limit_table[i]; limit = max77650_current_limit_table[i];
if (limit >= min_uA && limit <= max_uA) { if (limit >= min_uA && limit <= max_uA) {
rv = regmap_update_bits(map, rdesc->regA, return regmap_update_bits(map, rdesc->regA,
MAX77650_REGULATOR_CURR_LIM_MASK, MAX77650_REGULATOR_CURR_LIM_MASK,
MAX77650_REGULATOR_CURR_LIM_SHIFT(i)); MAX77650_REGULATOR_CURR_LIM_SHIFT(i));
if (rv)
return rv;
} }
} }
......
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