clk: mvebu: use correct bit for 98DX3236 NAND
authorChris Packham <chris.packham@alliedtelesis.co.nz>
Thu, 24 May 2018 05:23:41 +0000 (17:23 +1200)
committerStephen Boyd <sboyd@kernel.org>
Fri, 1 Jun 2018 19:46:33 +0000 (12:46 -0700)
The correct fieldbit value for the NAND PLL reload trigger is 27.

Fixes: commit e120c17a70e5 ("clk: mvebu: support for 98DX3236 SoC")
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/mvebu/clk-corediv.c

index 8491979f40965e2dbfafa20c23c4b4c54f9b40fc..68f05c53d40e1a67c77ea1a49d1f6d4fe53cbe01 100644 (file)
@@ -72,7 +72,7 @@ static const struct clk_corediv_desc mvebu_corediv_desc[] = {
 };
 
 static const struct clk_corediv_desc mv98dx3236_corediv_desc[] = {
-       { .mask = 0x0f, .offset = 6, .fieldbit = 26 }, /* NAND clock */
+       { .mask = 0x0f, .offset = 6, .fieldbit = 27 }, /* NAND clock */
 };
 
 #define to_corediv_clk(p) container_of(p, struct clk_corediv, hw)