aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKiran Gunda <[email protected]>2019-10-04 10:16:55 +0000
committerMark Brown <[email protected]>2019-10-04 17:44:37 +0000
commit77fd66c9ff3e992718a79fa6407148935d34b50f (patch)
tree44c569e8f15bc3e5d88008da958022e6fbba2519
parentregulator: pfuze100-regulator: Variable "val" in pfuze100_regulator_probe() c... (diff)
downloadkernel-77fd66c9ff3e992718a79fa6407148935d34b50f.tar.gz
kernel-77fd66c9ff3e992718a79fa6407148935d34b50f.zip
regulator: qcom-rpmh: Fix PMIC5 BoB min voltage
Correct the PMIC5 BoB min voltage from 0.3V to 3V. Also correct the voltage selector accordingly. Signed-off-by: Kiran Gunda <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--drivers/regulator/qcom-rpmh-regulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/qcom-rpmh-regulator.c b/drivers/regulator/qcom-rpmh-regulator.c
index db6c085da65e..0246b6f99fb5 100644
--- a/drivers/regulator/qcom-rpmh-regulator.c
+++ b/drivers/regulator/qcom-rpmh-regulator.c
@@ -735,8 +735,8 @@ static const struct rpmh_vreg_hw_data pmic5_hfsmps515 = {
static const struct rpmh_vreg_hw_data pmic5_bob = {
.regulator_type = VRM,
.ops = &rpmh_regulator_vrm_bypass_ops,
- .voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 135, 32000),
- .n_voltages = 136,
+ .voltage_range = REGULATOR_LINEAR_RANGE(3000000, 0, 31, 32000),
+ .n_voltages = 32,
.pmic_mode_map = pmic_mode_map_pmic5_bob,
.of_map_mode = rpmh_regulator_pmic4_bob_of_map_mode,
};