Skip to content

Commit 362951f

Browse files
committed
clk: renesas: r8a779h0: Fix PLL2/PLL4 multipliers in comments
The multipliers for PLL2 and PLL4 as listed in the comments for the cpg_pll_configs[] array are incorrect. Fix them. Note that the actual values in the tables were correct. Fixes: f077cab ("clk: renesas: cpg-mssr: Add support for R-Car V4M") Reported-by: Yoshihiro Shimoda <[email protected]> Signed-off-by: Geert Uytterhoeven <[email protected]> Reviewed-by: Yoshihiro Shimoda <[email protected]> Reviewed-by: Niklas Söderlund <[email protected]> Link: https://lore.kernel.org/07126b55807c1596422c9547e72f0a032487da1e.1718177076.git.geert+renesas@glider.be
1 parent f92d44a commit 362951f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/clk/renesas/r8a779h0-cpg-mssr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,10 @@ static const struct mssr_mod_clk r8a779h0_mod_clks[] = {
242242
* MD EXTAL PLL1 PLL2 PLL3 PLL4 PLL5 PLL6 OSC
243243
* 14 13 (MHz)
244244
* ------------------------------------------------------------------------
245-
* 0 0 16.66 / 1 x192 x204 x192 x144 x192 x168 /16
246-
* 0 1 20 / 1 x160 x170 x160 x120 x160 x140 /19
245+
* 0 0 16.66 / 1 x192 x240 x192 x240 x192 x168 /16
246+
* 0 1 20 / 1 x160 x200 x160 x200 x160 x140 /19
247247
* 1 0 Prohibited setting
248-
* 1 1 33.33 / 2 x192 x204 x192 x144 x192 x168 /32
248+
* 1 1 33.33 / 2 x192 x240 x192 x240 x192 x168 /32
249249
*/
250250
#define CPG_PLL_CONFIG_INDEX(md) ((((md) & BIT(14)) >> 13) | \
251251
(((md) & BIT(13)) >> 13))

0 commit comments

Comments
 (0)