clk: qcom: gcc-msm8994: use parent_hws for gpll0/4
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 20 Jun 2022 08:05:05 +0000 (11:05 +0300)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Tue, 19 Jul 2022 02:40:36 +0000 (21:40 -0500)
Use parent_hws for two remaining clocks in gcc-msm8994 that used
parent_names.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220620080505.1573948-1-dmitry.baryshkov@linaro.org
drivers/clk/qcom/gcc-msm8994.c

index 6b702cdacbf2ee0f1d52be178a923e33145655f5..0f52c48e89d8e753b4cd410878ee3470643d3b0d 100644 (file)
@@ -52,7 +52,9 @@ static struct clk_alpha_pll_postdiv gpll0 = {
        .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_DEFAULT],
        .clkr.hw.init = &(struct clk_init_data){
                .name = "gpll0",
-               .parent_names = (const char *[]) { "gpll0_early" },
+               .parent_hws = (const struct clk_hw*[]){
+                       &gpll0_early.clkr.hw
+               },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ops,
        },
@@ -81,7 +83,9 @@ static struct clk_alpha_pll_postdiv gpll4 = {
        .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_DEFAULT],
        .clkr.hw.init = &(struct clk_init_data){
                .name = "gpll4",
-               .parent_names = (const char *[]) { "gpll4_early" },
+               .parent_hws = (const struct clk_hw*[]){
+                       &gpll4_early.clkr.hw
+               },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ops,
        },