aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2019-01-29 11:01:56 +0800
committerMark Brown <broonie@kernel.org>2019-02-07 14:13:07 +0000
commit9df3bb319c449c6723c2c2a1c78db45301fd8669 (patch)
tree06035f11a56856ee6665c4b3f9c132f297b3507f /drivers/regulator
parentregulator: axp20x: fix ALDO2, DLDO2 and ELDO3 definitions for AXP803 (diff)
downloadlinux-dev-9df3bb319c449c6723c2c2a1c78db45301fd8669.tar.xz
linux-dev-9df3bb319c449c6723c2c2a1c78db45301fd8669.zip
regulator: lochnagar: Fix n_voltages setting for VDDCORE
With current n_voltages setting, regulator_list_voltage will return -EINVAL when selector >=57. The highest selector is 0x41, so the n_voltages should be 0x41+1, i.e. 66. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/lochnagar-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/lochnagar-regulator.c b/drivers/regulator/lochnagar-regulator.c
index 818d20410518..47f5663e99c8 100644
--- a/drivers/regulator/lochnagar-regulator.c
+++ b/drivers/regulator/lochnagar-regulator.c
@@ -194,7 +194,7 @@ static const struct regulator_desc lochnagar_regulators[] = {
.name = "VDDCORE",
.supply_name = "SYSVDD",
.type = REGULATOR_VOLTAGE,
- .n_voltages = 57,
+ .n_voltages = 66,
.ops = &lochnagar_vddcore_ops,
.id = LOCHNAGAR_VDDCORE,