diff options
author | Yao Zi <ziyao@disroot.org> | 2024-09-12 13:32:05 +0000 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2024-10-09 16:06:51 -0700 |
commit | ad1081a0da2744141d12e94ff816ac91feb871ca (patch) | |
tree | fce95af62a7592c1ed047d8578fc441bd6628907 | |
parent | 9852d85ec9d492ebef56dc5f229416c925758edc (diff) | |
download | linux-stable-ad1081a0da2744141d12e94ff816ac91feb871ca.tar.gz linux-stable-ad1081a0da2744141d12e94ff816ac91feb871ca.tar.bz2 linux-stable-ad1081a0da2744141d12e94ff816ac91feb871ca.zip |
clk: rockchip: fix finding of maximum clock ID
If an ID of a branch's child is greater than current maximum, we should
set new maximum to the child's ID, instead of its parent's.
Fixes: 2dc66a5ab2c6 ("clk: rockchip: rk3588: fix CLK_NR_CLKS usage")
Signed-off-by: Yao Zi <ziyao@disroot.org>
Link: https://lore.kernel.org/r/20240912133204.29089-2-ziyao@disroot.org
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
-rw-r--r-- | drivers/clk/rockchip/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/rockchip/clk.c b/drivers/clk/rockchip/clk.c index 2fa7253c73b2..88629a9abc9c 100644 --- a/drivers/clk/rockchip/clk.c +++ b/drivers/clk/rockchip/clk.c @@ -439,7 +439,7 @@ unsigned long rockchip_clk_find_max_clk_id(struct rockchip_clk_branch *list, if (list->id > max) max = list->id; if (list->child && list->child->id > max) - max = list->id; + max = list->child->id; } return max; |