diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2017-08-02 09:11:44 -0700 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-08-02 09:11:44 -0700 |
commit | 5c0858f12bbdbc9c69fc36ce7b509596df145600 (patch) | |
tree | a39d2dd429fab906c86c1d69bd174ed270d11222 /drivers/clk | |
parent | b48d7c5b896277fdb1462aae3a4c13858132764b (diff) | |
parent | 9735ee9e3cc3ba113ac96b0368ef3f1a73092a23 (diff) | |
download | linux-5c0858f12bbdbc9c69fc36ce7b509596df145600.tar.bz2 |
Merge tag 'sunxi-clk-fixes-for-4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into clk-fixes
Pull one Allwinner clock fix from Chen-Yu Tsai:
One critical clock fix for sun5i (A10s/A13/R8) which enables propagation
of clock rate changes from the "cpu" clock to it's parent PLL clock.
This fixes cpufreq related crashes that have been observed on KernelCI
with the C.H.I.P. and multi_v7_defconfig.
* tag 'sunxi-clk-fixes-for-4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux:
clk: sunxi-ng: sun5i: Add clk_set_rate_parent to the CPU clock
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/sunxi-ng/ccu-sun5i.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi-ng/ccu-sun5i.c b/drivers/clk/sunxi-ng/ccu-sun5i.c index 5372bf8be5e6..31d7ffda9aab 100644 --- a/drivers/clk/sunxi-ng/ccu-sun5i.c +++ b/drivers/clk/sunxi-ng/ccu-sun5i.c @@ -184,7 +184,7 @@ static struct ccu_mux cpu_clk = { .hw.init = CLK_HW_INIT_PARENTS("cpu", cpu_parents, &ccu_mux_ops, - CLK_IS_CRITICAL), + CLK_SET_RATE_PARENT | CLK_IS_CRITICAL), } }; |