diff options
author | Scott Wood <scottwood@freescale.com> | 2015-10-22 23:21:46 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2015-10-22 23:21:46 -0500 |
commit | 2c7693e081ab86e70931b2d05dbdbbdfab5086a3 (patch) | |
tree | 5f85b330ab8c791b3423b2c2dd87d8157aa6bb7e /drivers/clk/clk-qoriq.c | |
parent | 9e19ca2f627e5a6ee7425c48cc30b7356995b691 (diff) | |
download | linux-rt-2c7693e081ab86e70931b2d05dbdbbdfab5086a3.tar.gz |
clk: qoriq: Fix wrong data in p2041_cmux_grp2
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/clk/clk-qoriq.c')
-rw-r--r-- | drivers/clk/clk-qoriq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c index 8f9c93b9ce21..07985a57ae72 100644 --- a/drivers/clk/clk-qoriq.c +++ b/drivers/clk/clk-qoriq.c @@ -128,8 +128,8 @@ static const struct clockgen_muxinfo p2041_cmux_grp1 = { static const struct clockgen_muxinfo p2041_cmux_grp2 = { { [0] = { CLKSEL_VALID, CGA_PLL1, PLL_DIV1 }, - [4] = { CLKSEL_VALID, CGA_PLL1, PLL_DIV2 }, - [5] = { CLKSEL_VALID, CGA_PLL2, PLL_DIV1 }, + [4] = { CLKSEL_VALID, CGA_PLL2, PLL_DIV1 }, + [5] = { CLKSEL_VALID, CGA_PLL2, PLL_DIV2 }, } }; |