]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
clk: rockchip: fix error for unknown clocks
authorSebastian Reichel <sebastian.reichel@collabora.com>
Mon, 25 Mar 2024 19:33:36 +0000 (20:33 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Oct 2024 10:00:59 +0000 (12:00 +0200)
commit7a6c6ccab3d88ee04761830b86bd390ab2277b51
tree36ffbac214e65266a2d38c15cdbb51b4f4f783ff
parent710fd3d1cdd0e4abf42c0facf3feb19140a37969
clk: rockchip: fix error for unknown clocks

commit 12fd64babaca4dc09d072f63eda76ba44119816a upstream.

There is a clk == NULL check after the switch to check for
unsupported clk types. Since clk is re-assigned in a loop,
this check is useless right now for anything but the first
round. Let's fix this up by assigning clk = NULL in the
loop before the switch statement.

Fixes: a245fecbb806 ("clk: rockchip: add basic infrastructure for clock branches")
Cc: stable@vger.kernel.org
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
[added fixes + stable-cc]
Link: https://lore.kernel.org/r/20240325193609.237182-6-sebastian.reichel@collabora.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/clk/rockchip/clk.c