Skip to content

Commit 2382c1b

Browse files
MrVangregkh
authored andcommitted
nvmem: imx: correct nregs for i.MX6ULL
The nregs for i.MX6ULL should be 80 per fuse map, correct it. Fixes: ffbc34b ("nvmem: imx-ocotp: Implement i.MX6ULL/ULZ support") Cc: Stable@vger.kernel.org Signed-off-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20231013124904.175782-4-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 7d6e10f commit 2382c1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/nvmem/imx-ocotp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ static const struct ocotp_params imx6ul_params = {
519519
};
520520

521521
static const struct ocotp_params imx6ull_params = {
522-
.nregs = 64,
522+
.nregs = 80,
523523
.bank_address_words = 0,
524524
.set_timing = imx_ocotp_set_imx6_timing,
525525
.ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,

0 commit comments

Comments
 (0)