On 2021-12-15 03:54:09, Dmitry Baryshkov wrote: > Two clocks are still using parent_names, use parent_hws instead. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@xxxxxxxxxx> Nice catch! Reviewed-by: Marijn Suijten <marijn.suijten@xxxxxxxxxxxxxx> > --- > drivers/clk/qcom/gpucc-sdm660.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/clk/qcom/gpucc-sdm660.c b/drivers/clk/qcom/gpucc-sdm660.c > index 41bba96a08b3..7c07b0979aea 100644 > --- a/drivers/clk/qcom/gpucc-sdm660.c > +++ b/drivers/clk/qcom/gpucc-sdm660.c > @@ -204,8 +204,8 @@ static struct clk_branch gpucc_rbbmtimer_clk = { > .enable_mask = BIT(0), > .hw.init = &(struct clk_init_data){ > .name = "gpucc_rbbmtimer_clk", > - .parent_names = (const char *[]){ > - "rbbmtimer_clk_src", > + .parent_hws = (const struct clk_hw*[]){ > + &rbbmtimer_clk_src.clr.hw, > }, > .num_parents = 1, > .flags = CLK_SET_RATE_PARENT, > @@ -222,8 +222,8 @@ static struct clk_branch gpucc_rbcpr_clk = { > .enable_mask = BIT(0), > .hw.init = &(struct clk_init_data){ > .name = "gpucc_rbcpr_clk", > - .parent_names = (const char *[]){ > - "rbcpr_clk_src", > + .parent_hws = (const struct clk_hw*[]){ > + &rbcpr_clk_src.clkr.hw, > }, > .num_parents = 1, > .flags = CLK_SET_RATE_PARENT, > -- > 2.33.0 >