Skip to content

Commit 414a98a

Browse files
MrVangregkh
authored andcommitted
nvmem: imx: correct nregs for i.MX6SLL
The nregs for i.MX6SLL should be 80 per fuse map, correct it. Fixes: 6da2782 ("nvmem: imx-ocotp: add support for imx6sll") 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-2-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 5091433 commit 414a98a

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
@@ -498,7 +498,7 @@ static const struct ocotp_params imx6sl_params = {
498498
};
499499

500500
static const struct ocotp_params imx6sll_params = {
501-
.nregs = 128,
501+
.nregs = 80,
502502
.bank_address_words = 0,
503503
.set_timing = imx_ocotp_set_imx6_timing,
504504
.ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,

0 commit comments

Comments
 (0)