diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2018-05-24 17:23:41 +1200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-06-01 12:46:33 -0700 |
commit | 00c5a926af12a9f0236928dab3dc9faf621406a1 (patch) | |
tree | 50771e7c9a880b3c5c86574d173487e3d2a5e7de /drivers/clk | |
parent | 60cc43fc888428bb2f18f08997432d426a243338 (diff) | |
download | linux-00c5a926af12a9f0236928dab3dc9faf621406a1.tar.bz2 |
clk: mvebu: use correct bit for 98DX3236 NAND
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>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/mvebu/clk-corediv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mvebu/clk-corediv.c b/drivers/clk/mvebu/clk-corediv.c index 8491979f4096..68f05c53d40e 100644 --- a/drivers/clk/mvebu/clk-corediv.c +++ b/drivers/clk/mvebu/clk-corediv.c @@ -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) |