Skip to content

Commit 819b2e1

Browse files
Johan Jonkermmind
authored andcommitted
clk: rockchip: rk3228: Drop CLK_NR_CLKS usage
In order to get rid of CLK_NR_CLKS and be able to drop it from the bindings, use rockchip_clk_find_max_clk_id helper to find the highest clock id. Signed-off-by: Johan Jonker <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Heiko Stuebner <[email protected]>
1 parent ec4f426 commit 819b2e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drivers/clk/rockchip/clk-rk3228.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,7 @@ static const char *const rk3228_critical_clocks[] __initconst = {
683683
static void __init rk3228_clk_init(struct device_node *np)
684684
{
685685
struct rockchip_clk_provider *ctx;
686+
unsigned long clk_nr_clks;
686687
void __iomem *reg_base;
687688

688689
reg_base = of_iomap(np, 0);
@@ -691,7 +692,9 @@ static void __init rk3228_clk_init(struct device_node *np)
691692
return;
692693
}
693694

694-
ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
695+
clk_nr_clks = rockchip_clk_find_max_clk_id(rk3228_clk_branches,
696+
ARRAY_SIZE(rk3228_clk_branches)) + 1;
697+
ctx = rockchip_clk_init(np, reg_base, clk_nr_clks);
695698
if (IS_ERR(ctx)) {
696699
pr_err("%s: rockchip clk init failed\n", __func__);
697700
iounmap(reg_base);

0 commit comments

Comments
 (0)