Skip to content

Commit 783cb69

Browse files
Patrick Whewellandersson
authored andcommitted
clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src
GPLL9 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: 3e57709 ("clk: qcom: gcc: Add global clock controller driver for SM8250") Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Patrick Whewell <patrick.whewell@sightlineapplications.com> Reviewed-by: Vinod Koul <vkoul@kernel.org> Link: https://lore.kernel.org/r/20230802210359.408-1-patrick.whewell@sightlineapplications.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
1 parent e39d0fa commit 783cb69

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/clk/qcom/gcc-sm8250.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = {
721721
.name = "gcc_sdcc2_apps_clk_src",
722722
.parent_data = gcc_parent_data_4,
723723
.num_parents = ARRAY_SIZE(gcc_parent_data_4),
724+
.flags = CLK_OPS_PARENT_ENABLE,
724725
.ops = &clk_rcg2_floor_ops,
725726
},
726727
};

0 commit comments

Comments
 (0)