Message ID | 20211228045415.20543-2-dmitry.baryshkov@linaro.org |
---|---|
State | Accepted |
Commit | 30ac9f356f50bee4e388789fc2717b264bf0609d |
Headers | show |
Series | [v4,01/16] clk: qcom: gpucc-sdm660: fix two clocks with parent_names | expand |
Hello: This series was applied to qcom/linux.git (for-next) by Bjorn Andersson <bjorn.andersson@linaro.org>: On Tue, 28 Dec 2021 07:54:00 +0300 you wrote: > Two clocks are still using parent_names, use parent_hws instead. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > Reviewed-by: Marijn Suijten <marijn.suijten@somainline.org> > --- > drivers/clk/qcom/gpucc-sdm660.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Here is the summary with links: - [v4,01/16] clk: qcom: gpucc-sdm660: fix two clocks with parent_names https://git.kernel.org/qcom/c/30ac9f356f50 - [v4,02/16] clk: qcom: gpucc-sdm660: get rid of the test clock https://git.kernel.org/qcom/c/6985fdc0c80c - [v4,03/16] clk: qcom: gpucc-sdm660: use parent_hws instead of parent_data https://git.kernel.org/qcom/c/ba9b57dcac4f - [v4,04/16] clk: qcom: camcc-sc7180: use ARRAY_SIZE instead of specifying num_parents https://git.kernel.org/qcom/c/3ca901712156 - [v4,05/16] clk: qcom: camcc-sc7180: get rid of the test clock https://git.kernel.org/qcom/c/5d57a18f2569 - [v4,06/16] clk: qcom: camcc-sc7180: use parent_hws instead of parent_data https://git.kernel.org/qcom/c/f1697f36196e - [v4,07/16] clk: qcom: camcc-sdm845: use ARRAY_SIZE instead of specifying num_parents https://git.kernel.org/qcom/c/cf4cd3dcb79a - [v4,08/16] clk: qcom: camcc-sdm845: get rid of the test clock https://git.kernel.org/qcom/c/6b7ef45f7aa9 - [v4,09/16] clk: qcom: camcc-sdm845: move clock parent tables down https://git.kernel.org/qcom/c/b4e2d27ec748 - [v4,10/16] clk: qcom: camcc-sdm845: convert to parent_hws/_data https://git.kernel.org/qcom/c/0cc3bd80610c - [v4,11/16] clk: qcom: videocc-sc7180: use parent_hws instead of parent_data https://git.kernel.org/qcom/c/38d40dd3ed38 - [v4,12/16] clk: qcom: gcc-msm8996: use ARRAY_SIZE instead of specifying num_parents https://git.kernel.org/qcom/c/ed96df3d461e - [v4,13/16] clk: qcom: gcc-msm8996: drop unsupported clock sources https://git.kernel.org/qcom/c/b554a687b497 - [v4,14/16] clk: qcom: gcc-msm8996: move clock parent tables down https://git.kernel.org/qcom/c/1a2789cff03c - [v4,15/16] clk: qcom: gcc-msm8996: use parent_hws/_data instead of parent_names https://git.kernel.org/qcom/c/b3867679d460 - [v4,16/16] clk: qcom: gcc-msm8996: start getting rid of xo clk https://git.kernel.org/qcom/c/fb4701307ce7 You are awesome, thank you!
diff --git a/drivers/clk/qcom/gpucc-sdm660.c b/drivers/clk/qcom/gpucc-sdm660.c index 41bba96a08b3..d170353eccf6 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.clkr.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,