summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-12-19 00:44:48 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2016-12-19 00:44:48 -0800
commit94ed7d286f5e4ff518e91bde0c3591ff6d05d25d (patch)
tree5c3bffbccf83862e89ef6fa3f12422c704c6fa59
parent315701b38cf22f668a8753eacf96c3e4e0ab871d (diff)
parent18abc31c7193ee2908b85a8344f12880e574963a (diff)
Merge "soc: qcom: pil-q6v5: Update cx_max to INT_MAX while voting for CX rail"
-rw-r--r--drivers/soc/qcom/pil-q6v5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/qcom/pil-q6v5.c b/drivers/soc/qcom/pil-q6v5.c
index 6bafa46a5c0b..43e3adeb0732 100644
--- a/drivers/soc/qcom/pil-q6v5.c
+++ b/drivers/soc/qcom/pil-q6v5.c
@@ -149,7 +149,7 @@ err_vreg_pll:
err_cx_enable:
regulator_set_load(drv->vreg_cx, 0);
err_cx_mode:
- regulator_set_voltage(drv->vreg_cx, RPM_REGULATOR_CORNER_NONE, uv);
+ regulator_set_voltage(drv->vreg_cx, RPM_REGULATOR_CORNER_NONE, INT_MAX);
err_cx_voltage:
clk_disable_unprepare(drv->qdss_clk);
err_qdss_vote:
@@ -179,7 +179,7 @@ void pil_q6v5_remove_proxy_votes(struct pil_desc *pil)
}
regulator_disable(drv->vreg_cx);
regulator_set_load(drv->vreg_cx, 0);
- regulator_set_voltage(drv->vreg_cx, RPM_REGULATOR_CORNER_NONE, uv);
+ regulator_set_voltage(drv->vreg_cx, RPM_REGULATOR_CORNER_NONE, INT_MAX);
clk_disable_unprepare(drv->xo);
clk_disable_unprepare(drv->pnoc_clk);
clk_disable_unprepare(drv->qdss_clk);