Commit 71a64ba2 authored by Christian Hohnstaedt's avatar Christian Hohnstaedt Committed by Mark Brown

regulator: tps65218.c: fix LS3 issues

- Fix list of valid LS3 currents from mA to µA
- Fix selection of min/max microAmps of LS3.
  Selecting one of the configured values as max value now really
  selects it instead of the next lower one
Signed-off-by: default avatarChristian Hohnstaedt <Christian.Hohnstaedt@wago.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent a5455c91
...@@ -188,7 +188,8 @@ static struct regulator_ops tps65218_ldo1_dcdc34_ops = { ...@@ -188,7 +188,8 @@ static struct regulator_ops tps65218_ldo1_dcdc34_ops = {
.set_suspend_disable = tps65218_pmic_set_suspend_disable, .set_suspend_disable = tps65218_pmic_set_suspend_disable,
}; };
static const int ls3_currents[] = { 100, 200, 500, 1000 }; static const int ls3_currents[] = { 100000, 200000, 500000, 1000000 };
static int tps65218_pmic_set_input_current_lim(struct regulator_dev *dev, static int tps65218_pmic_set_input_current_lim(struct regulator_dev *dev,
int lim_uA) int lim_uA)
...@@ -214,7 +215,7 @@ static int tps65218_pmic_set_current_limit(struct regulator_dev *dev, ...@@ -214,7 +215,7 @@ static int tps65218_pmic_set_current_limit(struct regulator_dev *dev,
unsigned int num_currents = ARRAY_SIZE(ls3_currents); unsigned int num_currents = ARRAY_SIZE(ls3_currents);
struct tps65218 *tps = rdev_get_drvdata(dev); struct tps65218 *tps = rdev_get_drvdata(dev);
while (index < num_currents && ls3_currents[index] < max_uA) while (index < num_currents && ls3_currents[index] <= max_uA)
index++; index++;
index--; index--;
......
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