Commit d2aaeb9a authored by Chris Packham's avatar Chris Packham Committed by Greg Kroah-Hartman

clk: mvebu: use correct bit for 98DX3236 NAND

commit 00c5a926 upstream.

The correct fieldbit value for the NAND PLL reload trigger is 27.

Fixes: commit e120c17a ("clk: mvebu: support for 98DX3236 SoC")
Signed-off-by: default avatarChris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatarSudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 864aede9
...@@ -72,7 +72,7 @@ static const struct clk_corediv_desc mvebu_corediv_desc[] = { ...@@ -72,7 +72,7 @@ static const struct clk_corediv_desc mvebu_corediv_desc[] = {
}; };
static const struct clk_corediv_desc mv98dx3236_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) #define to_corediv_clk(p) container_of(p, struct clk_corediv, hw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment