Skip to content

Commit 1583694

Browse files
lumagandersson
authored andcommitted
clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock
The pll0_vote clock definitely should have pll0 as a parent (instead of pll8). Fixes: 7792a8d ("clk: mdm9615: Add support for MDM9615 Clock Controllers") Cc: stable@kernel.org Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Link: https://lore.kernel.org/r/20230512211727.3445575-7-dmitry.baryshkov@linaro.org Signed-off-by: Bjorn Andersson <andersson@kernel.org>
1 parent bac4675 commit 1583694

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/qcom/gcc-mdm9615.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static struct clk_regmap pll0_vote = {
5858
.enable_mask = BIT(0),
5959
.hw.init = &(struct clk_init_data){
6060
.name = "pll0_vote",
61-
.parent_names = (const char *[]){ "pll8" },
61+
.parent_names = (const char *[]){ "pll0" },
6262
.num_parents = 1,
6363
.ops = &clk_pll_vote_ops,
6464
},

0 commit comments

Comments
 (0)