projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01a7ea7
)
clk: sunxi-ng: h3/h5: Fix CSI_MCLK parent
author
Chen-Yu Tsai
<wens@csie.org>
Fri, 30 Nov 2018 05:33:28 +0000
(13:33 +0800)
committer
Chen-Yu Tsai
<wens@csie.org>
Mon, 3 Dec 2018 15:54:07 +0000
(23:54 +0800)
The third parent of CSI_MCLK is PLL_PERIPH1, not PLL_PERIPH0.
Fix it.
Fixes:
0577e4853bfb
("clk: sunxi-ng: Add H3 clocks")
Acked-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
patch
|
blob
|
history
diff --git
a/drivers/clk/sunxi-ng/ccu-sun8i-h3.c
b/drivers/clk/sunxi-ng/ccu-sun8i-h3.c
index
eb5c608
..
9341ca7
100644
(file)
--- a/
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
+++ b/
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
@@
-476,7
+476,7
@@
static const char * const csi_sclk_parents[] = { "pll-periph0", "pll-periph1" };
static SUNXI_CCU_M_WITH_MUX_GATE(csi_sclk_clk, "csi-sclk", csi_sclk_parents,
0x134, 16, 4, 24, 3, BIT(31), 0);
-static const char * const csi_mclk_parents[] = { "osc24M", "pll-video", "pll-periph
0
" };
+static const char * const csi_mclk_parents[] = { "osc24M", "pll-video", "pll-periph
1
" };
static SUNXI_CCU_M_WITH_MUX_GATE(csi_mclk_clk, "csi-mclk", csi_mclk_parents,
0x134, 0, 5, 8, 3, BIT(15), 0);