Commit 553c452d authored by Vinod Koul's avatar Vinod Koul Committed by Mark Brown

regulator: qcom-rpmh: Fix pmic5_bob voltage count

pmic5_bob voltages count is 136 [0,135] so update it
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20190809073616.1235-3-vkoul@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7172fb7f
...@@ -698,7 +698,7 @@ static const struct rpmh_vreg_hw_data pmic5_bob = { ...@@ -698,7 +698,7 @@ static const struct rpmh_vreg_hw_data pmic5_bob = {
.regulator_type = VRM, .regulator_type = VRM,
.ops = &rpmh_regulator_vrm_bypass_ops, .ops = &rpmh_regulator_vrm_bypass_ops,
.voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 135, 32000), .voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 135, 32000),
.n_voltages = 135, .n_voltages = 136,
.pmic_mode_map = pmic_mode_map_pmic4_bob, .pmic_mode_map = pmic_mode_map_pmic4_bob,
.of_map_mode = rpmh_regulator_pmic4_bob_of_map_mode, .of_map_mode = rpmh_regulator_pmic4_bob_of_map_mode,
}; };
......
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