Skip to content

Commit a76f274

Browse files
vinodkoulbebarino
authored andcommitted
clk: qcom: gcc: Fix parent for gpll0_out_even
Documentation says that gpll0 is parent of gpll0_out_even, somehow driver coded that as bi_tcxo, so fix it Fixes: 2a1d7eb ("clk: qcom: gcc: Add global clock controller driver for SM8150") Reported-by: Jonathan Marek <[email protected]> Signed-off-by: Vinod Koul <[email protected]> Link: https://lkml.kernel.org/r/[email protected] Reviewed-by: Bjorn Andersson <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent 3a4ef4c commit a76f274

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/clk/qcom/gcc-sm8150.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ static struct clk_alpha_pll_postdiv gpll0_out_even = {
7676
.clkr.hw.init = &(struct clk_init_data){
7777
.name = "gpll0_out_even",
7878
.parent_data = &(const struct clk_parent_data){
79-
.fw_name = "bi_tcxo",
80-
.name = "bi_tcxo",
79+
.hw = &gpll0.clkr.hw,
8180
},
8281
.num_parents = 1,
8382
.ops = &clk_trion_pll_postdiv_ops,

0 commit comments

Comments
 (0)