Skip to content

Commit df04d16

Browse files
lweiss-fairphoneandersson
authored andcommitted
clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src
GPLL7 is not on by default, which causes a "gcc_sdcc2_apps_clk_src: rcg didn't update its configuration" error when booting. Set .flags = CLK_OPS_PARENT_ENABLE to fix the error. Fixes: 131abae ("clk: qcom: Add SM6350 GCC driver") Signed-off-by: Luca Weiss <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent 181b66e commit df04d16

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/clk/qcom/gcc-sm6350.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = {
641641
.name = "gcc_sdcc2_apps_clk_src",
642642
.parent_data = gcc_parent_data_8,
643643
.num_parents = ARRAY_SIZE(gcc_parent_data_8),
644+
.flags = CLK_OPS_PARENT_ENABLE,
644645
.ops = &clk_rcg2_floor_ops,
645646
},
646647
};

0 commit comments

Comments
 (0)