projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c488b24
)
clk: stm32mp1: fix mcu divider table
author
Gabriel Fernandez
<gabriel.fernandez@st.com>
Thu, 14 Feb 2019 10:40:44 +0000
(11:40 +0100)
committer
Stephen Boyd
<sboyd@kernel.org>
Thu, 21 Feb 2019 22:13:20 +0000
(14:13 -0800)
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>
drivers/clk/clk-stm32mp1.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk-stm32mp1.c
b/drivers/clk/clk-stm32mp1.c
index f9b7d5e9491d1fefe9fb322b00f1660589996236..8b4e01af484875e1f4ffa3d9a3beb08ad85fb8cd 100644
(file)
--- 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 },
};