diff options
author | Gabriel Fernandez <gabriel.fernandez@st.com> | 2019-02-14 13:40:44 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-02-22 01:13:20 +0300 |
commit | 140fc4e406fac420b978a0ef2ee1fe3c641a6ae4 (patch) | |
tree | 0d4280fa545e5959f816e17c0a28fcb5542323d7 /drivers/clk/clk-stm32mp1.c | |
parent | c488b24f862787dedbf2578e0bc622a74ac64f0f (diff) | |
download | linux-140fc4e406fac420b978a0ef2ee1fe3c641a6ae4.tar.xz |
clk: stm32mp1: fix mcu divider table
index 8: ck_mcu is divided by 256 (not 512)
Fixes: e51d297e9a92 ("clk: stm32mp1: add Sub System clocks")
Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk-stm32mp1.c')
-rw-r--r-- | drivers/clk/clk-stm32mp1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-stm32mp1.c b/drivers/clk/clk-stm32mp1.c index f9b7d5e9491d..8b4e01af4848 100644 --- a/drivers/clk/clk-stm32mp1.c +++ b/drivers/clk/clk-stm32mp1.c @@ -269,7 +269,7 @@ static const struct clk_div_table axi_div_table[] = { static const struct clk_div_table mcu_div_table[] = { { 0, 1 }, { 1, 2 }, { 2, 4 }, { 3, 8 }, { 4, 16 }, { 5, 32 }, { 6, 64 }, { 7, 128 }, - { 8, 512 }, { 9, 512 }, { 10, 512}, { 11, 512 }, + { 8, 256 }, { 9, 512 }, { 10, 512}, { 11, 512 }, { 12, 512 }, { 13, 512 }, { 14, 512}, { 15, 512 }, { 0 }, }; |