aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/clk/qcom/clk-pll.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/clk/qcom/clk-pll.c b/drivers/clk/qcom/clk-pll.c
index b4325f65a1bf..245d5063a385 100644
--- a/drivers/clk/qcom/clk-pll.c
+++ b/drivers/clk/qcom/clk-pll.c
@@ -71,12 +71,8 @@ static int clk_pll_enable(struct clk_hw *hw)
71 udelay(50); 71 udelay(50);
72 72
73 /* Enable PLL output. */ 73 /* Enable PLL output. */
74 ret = regmap_update_bits(pll->clkr.regmap, pll->mode_reg, PLL_OUTCTRL, 74 return regmap_update_bits(pll->clkr.regmap, pll->mode_reg, PLL_OUTCTRL,
75 PLL_OUTCTRL); 75 PLL_OUTCTRL);
76 if (ret)
77 return ret;
78
79 return 0;
80} 76}
81 77
82static void clk_pll_disable(struct clk_hw *hw) 78static void clk_pll_disable(struct clk_hw *hw)