Skip to content

Commit 31fe149

Browse files
Johan Jonkermmind
authored andcommitted
clk: rockchip: rk3308: 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 545b131 commit 31fe149

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drivers/clk/rockchip/clk-rk3308.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,6 +917,7 @@ static const char *const rk3308_critical_clocks[] __initconst = {
917917
static void __init rk3308_clk_init(struct device_node *np)
918918
{
919919
struct rockchip_clk_provider *ctx;
920+
unsigned long clk_nr_clks;
920921
void __iomem *reg_base;
921922

922923
reg_base = of_iomap(np, 0);
@@ -925,7 +926,9 @@ static void __init rk3308_clk_init(struct device_node *np)
925926
return;
926927
}
927928

928-
ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
929+
clk_nr_clks = rockchip_clk_find_max_clk_id(rk3308_clk_branches,
930+
ARRAY_SIZE(rk3308_clk_branches)) + 1;
931+
ctx = rockchip_clk_init(np, reg_base, clk_nr_clks);
929932
if (IS_ERR(ctx)) {
930933
pr_err("%s: rockchip clk init failed\n", __func__);
931934
iounmap(reg_base);

0 commit comments

Comments
 (0)