mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 06:24:53 +08:00
clk: sunxi-ng: sun5i: Fix mux width for csi clock
Mux for CSI clock is 3 bits, not 2. Signed-off-by: Priit Laes <plaes@plaes.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
This commit is contained in:
parent
05c04bef44
commit
b0f0daa8fe
@ -469,7 +469,7 @@ static const char * const csi_parents[] = { "hosc", "pll-video0", "pll-video1",
|
|||||||
static const u8 csi_table[] = { 0, 1, 2, 5, 6 };
|
static const u8 csi_table[] = { 0, 1, 2, 5, 6 };
|
||||||
static SUNXI_CCU_M_WITH_MUX_TABLE_GATE(csi_clk, "csi",
|
static SUNXI_CCU_M_WITH_MUX_TABLE_GATE(csi_clk, "csi",
|
||||||
csi_parents, csi_table,
|
csi_parents, csi_table,
|
||||||
0x134, 0, 5, 24, 2, BIT(31), 0);
|
0x134, 0, 5, 24, 3, BIT(31), 0);
|
||||||
|
|
||||||
static SUNXI_CCU_GATE(ve_clk, "ve", "pll-ve",
|
static SUNXI_CCU_GATE(ve_clk, "ve", "pll-ve",
|
||||||
0x13c, BIT(31), CLK_SET_RATE_PARENT);
|
0x13c, BIT(31), CLK_SET_RATE_PARENT);
|
||||||
|
Loading…
Reference in New Issue
Block a user