clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock
commit1583694bb4
upstream. The pll0_vote clock definitely should have pll0 as a parent (instead of pll8). Fixes:7792a8d671
("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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5b3b0f7f73
commit
c4e1204bd7
|
@ -58,7 +58,7 @@ static struct clk_regmap pll0_vote = {
|
||||||
.enable_mask = BIT(0),
|
.enable_mask = BIT(0),
|
||||||
.hw.init = &(struct clk_init_data){
|
.hw.init = &(struct clk_init_data){
|
||||||
.name = "pll0_vote",
|
.name = "pll0_vote",
|
||||||
.parent_names = (const char *[]){ "pll8" },
|
.parent_names = (const char *[]){ "pll0" },
|
||||||
.num_parents = 1,
|
.num_parents = 1,
|
||||||
.ops = &clk_pll_vote_ops,
|
.ops = &clk_pll_vote_ops,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue