Skip to content

Commit 01fdcbc

Browse files
paulkocialkowskiwens
authored andcommitted
clk: sunxi-ng: v3s: Fix TCON clock parents
The TCON clock can be parented to both the video PLL and the periph0 PLL. Add the latter, which was missing from the list. Fixes: d0f11d1 ("clk: sunxi-ng: add support for V3s CCU") Signed-off-by: Paul Kocialkowski <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Chen-Yu Tsai <[email protected]>
1 parent 2b73328 commit 01fdcbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/sunxi-ng/ccu-sun8i-v3s.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ static SUNXI_CCU_M_WITH_MUX_GATE(de_clk, "de", de_parents,
350350
0x104, 0, 4, 24, 2, BIT(31),
351351
CLK_SET_RATE_PARENT);
352352

353-
static const char * const tcon_parents[] = { "pll-video" };
353+
static const char * const tcon_parents[] = { "pll-video", "pll-periph0" };
354354
static SUNXI_CCU_M_WITH_MUX_GATE(tcon_clk, "tcon", tcon_parents,
355355
0x118, 0, 4, 24, 3, BIT(31), 0);
356356

0 commit comments

Comments
 (0)