Skip to content

Commit ee7fe68

Browse files
committed
Merge tag 'sunxi-clk-fixes-for-5.13-1' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into clk-allwinner
Pull one Allwinner clk driver update from Maxime Ripard: - One patch to fix a divider on the v3s Audio PLL * tag 'sunxi-clk-fixes-for-5.13-1' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux: clk: sunxi-ng: v3s: fix incorrect postdivider on pll-audio
2 parents 6efb943 + 47e4dc4 commit ee7fe68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -817,10 +817,10 @@ static void __init sun8i_v3_v3s_ccu_init(struct device_node *node,
817817
return;
818818
}
819819

820-
/* Force the PLL-Audio-1x divider to 4 */
820+
/* Force the PLL-Audio-1x divider to 1 */
821821
val = readl(reg + SUN8I_V3S_PLL_AUDIO_REG);
822822
val &= ~GENMASK(19, 16);
823-
writel(val | (3 << 16), reg + SUN8I_V3S_PLL_AUDIO_REG);
823+
writel(val, reg + SUN8I_V3S_PLL_AUDIO_REG);
824824

825825
sunxi_ccu_probe(node, reg, ccu_desc);
826826
}

0 commit comments

Comments
 (0)