clk: uniphier: Fix update register for CPU-gear
authorKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Fri, 8 Feb 2019 02:25:23 +0000 (11:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Mar 2019 19:10:03 +0000 (20:10 +0100)
commit 521282237b9d78b9bff423ec818becd4c95841c2 upstream.

Need to set the update bit in UNIPHIER_CLK_CPUGEAR_UPD to update
the CPU-gear value.

Fixes: d08f1f0d596c ("clk: uniphier: add CPU-gear change (cpufreq) support")
Cc: linux-stable@vger.kernel.org
Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/clk/uniphier/clk-uniphier-cpugear.c

index ec11f55..5d2d42b 100644 (file)
@@ -47,7 +47,7 @@ static int uniphier_clk_cpugear_set_parent(struct clk_hw *hw, u8 index)
                return ret;
 
        ret = regmap_write_bits(gear->regmap,
-                               gear->regbase + UNIPHIER_CLK_CPUGEAR_SET,
+                               gear->regbase + UNIPHIER_CLK_CPUGEAR_UPD,
                                UNIPHIER_CLK_CPUGEAR_UPD_BIT,
                                UNIPHIER_CLK_CPUGEAR_UPD_BIT);
        if (ret)