Skip to content

Commit a77a1e2

Browse files
dougg3bebarino
authored andcommitted
clk: mmp: pxa168: fix incorrect dividers
These two clocks had multipliers and dividers that didn't match their names. A subsequent commit goes through all of the existing peripherals and ensure the correct clocks are being used everywhere. Signed-off-by: Doug Brown <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent a5ff3d8 commit a77a1e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/clk/mmp/clk-of-pxa168.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ static struct mmp_param_fixed_factor_clk fixed_factor_clks[] = {
8888
{PXA168_CLK_PLL1_96, "pll1_96", "pll1_48", 1, 2, 0},
8989
{PXA168_CLK_PLL1_192, "pll1_192", "pll1_96", 1, 2, 0},
9090
{PXA168_CLK_PLL1_13, "pll1_13", "pll1", 1, 13, 0},
91-
{PXA168_CLK_PLL1_13_1_5, "pll1_13_1_5", "pll1_13", 2, 3, 0},
92-
{PXA168_CLK_PLL1_2_1_5, "pll1_2_1_5", "pll1_2", 2, 3, 0},
91+
{PXA168_CLK_PLL1_13_1_5, "pll1_13_1_5", "pll1_13", 1, 5, 0},
92+
{PXA168_CLK_PLL1_2_1_5, "pll1_2_1_5", "pll1_2", 1, 5, 0},
9393
{PXA168_CLK_PLL1_3_16, "pll1_3_16", "pll1", 3, 16, 0},
9494
};
9595

0 commit comments

Comments
 (0)