Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d6c21d1 authored by Vivek Aknurwar's avatar Vivek Aknurwar Committed by David Dai
Browse files

clk: qcom: clk-alpha-pll: correct clk_lucid_pll_configure function name



Change alpha_pll_lucid_configure() to clk_lucid_pll_configure() in the
clk-alpha-pll driver in order to match the name used in the clk-alpha-pll
header file. This ensures that platform specific clock controller drivers
can make use of the PLL configuration function.

Change-Id: I3c3ed9e3730145a799aa3b3c7793276c80938ea9
Signed-off-by: default avatarVivek Aknurwar <viveka@codeaurora.org>
parent 58acaef1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1189,7 +1189,7 @@ static int lucid_pll_is_enabled(struct clk_alpha_pll *pll,
		(mode_regval & PLL_OUTCTRL));
}

int alpha_pll_lucid_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
int clk_lucid_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
				const struct alpha_pll_config *config)
{
	int ret;
@@ -1301,7 +1301,7 @@ static int alpha_pll_lucid_enable(struct clk_hw *hw)
	}

	if (unlikely(!pll->inited)) {
		ret = alpha_pll_lucid_configure(pll, pll->clkr.regmap,
		ret = clk_lucid_pll_configure(pll, pll->clkr.regmap,
						pll->config);
		if (ret) {
			pr_err("Failed to configure %s\n", clk_hw_get_name(hw));