From: Marek Szyprowski Date: Tue, 13 Jun 2023 13:16:31 +0000 (+0200) Subject: clk: Fix best_parent_rate after moving code into a separate function X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=be8fa5fd0a48fd2decc4de81ffe72bb3ceacecd9;p=linux.git clk: Fix best_parent_rate after moving code into a separate function best_parent_rate entry is still being used in the code and needs to be always updated regardless of the CLK_SET_RATE_NO_REPARENT flag. Fixes: 1b4e99fda73f ("clk: Move no reparent case into a separate function") Signed-off-by: Marek Szyprowski Link: https://lore.kernel.org/r/20230613131631.270192-1-m.szyprowski@samsung.com Acked-by: Maxime Ripard Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index ffc9f03840b7d..7ac9f7a8cb844 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -629,6 +629,7 @@ clk_core_determine_rate_no_reparent(struct clk_hw *hw, best = clk_core_get_rate_nolock(core); } + req->best_parent_rate = best; req->rate = best; return 0;