Skip to content

Commit 2f290b7

Browse files
xdarklightjbrun3t
authored andcommitted
clk: meson: clk-pll: fix initializing the old rate (fallback) for a PLL
The "rate" parameter in meson_clk_pll_set_rate() contains the new rate. Retrieve the old rate with clk_hw_get_rate() so we don't inifinitely try to switch from the new rate to the same rate again. Fixes: 7a29a86 ("clk: meson: Add support for Meson clock controller") Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Link: https://lore.kernel.org/r/20201226121556.975418-2-martin.blumenstingl@googlemail.com
1 parent 5c8fe58 commit 2f290b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/meson/clk-pll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ static int meson_clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
371371
if (parent_rate == 0 || rate == 0)
372372
return -EINVAL;
373373

374-
old_rate = rate;
374+
old_rate = clk_hw_get_rate(hw);
375375

376376
ret = meson_clk_get_pll_settings(rate, parent_rate, &m, &n, pll);
377377
if (ret)

0 commit comments

Comments
 (0)