Skip to content

Commit 743e3c8

Browse files
committed
Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
Pull clk fix from Stephen Boyd: "One fix for the qcom QCS404 clk driver that was merged for this release. It specified the wrong parent for a PLL so a part of the clk tree wasn't rooted correctly. This fixes it by using the right name" * tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: clk: qcom: qcs404: Fix gpll0_out_main parent
2 parents eb6cf9f + 8a034aa commit 743e3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/qcom/gcc-qcs404.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static struct clk_alpha_pll gpll0_out_main = {
297297
.hw.init = &(struct clk_init_data){
298298
.name = "gpll0_out_main",
299299
.parent_names = (const char *[])
300-
{ "gpll0_sleep_clk_src" },
300+
{ "cxo" },
301301
.num_parents = 1,
302302
.ops = &clk_alpha_pll_ops,
303303
},

0 commit comments

Comments
 (0)