clk: meson: clk-pll: fix initializing the old rate (fallback) for a PLL
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Sat, 26 Dec 2020 12:15:54 +0000 (13:15 +0100)
committerJerome Brunet <jbrunet@baylibre.com>
Mon, 4 Jan 2021 10:42:25 +0000 (11:42 +0100)
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: 7a29a869434e8b ("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
drivers/clk/meson/clk-pll.c

index b17a13e9337c40eb0fe677d6b283f91178ce01f9..9404609b5ebfaa5170cbb039dbe5af3623d0ede1 100644 (file)
@@ -371,7 +371,7 @@ static int meson_clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
        if (parent_rate == 0 || rate == 0)
                return -EINVAL;
 
-       old_rate = rate;
+       old_rate = clk_hw_get_rate(hw);
 
        ret = meson_clk_get_pll_settings(rate, parent_rate, &m, &n, pll);
        if (ret)