]> Git Repo - linux.git/commitdiff
nvmem: imx: correct nregs for i.MX6ULL
authorPeng Fan <[email protected]>
Fri, 13 Oct 2023 12:49:04 +0000 (13:49 +0100)
committerGreg Kroah-Hartman <[email protected]>
Mon, 16 Oct 2023 19:00:08 +0000 (21:00 +0200)
The nregs for i.MX6ULL should be 80 per fuse map, correct it.

Fixes: ffbc34bf0e9c ("nvmem: imx-ocotp: Implement i.MX6ULL/ULZ support")
Cc: [email protected]
Signed-off-by: Peng Fan <[email protected]>
Signed-off-by: Srinivas Kandagatla <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/nvmem/imx-ocotp.c

index 921afe114a2c6e8c16c7ccbfc00c9184d02b081e..e8b6f194925dfcefbf80b01ff7374fc33d5e578b 100644 (file)
@@ -519,7 +519,7 @@ static const struct ocotp_params imx6ul_params = {
 };
 
 static const struct ocotp_params imx6ull_params = {
-       .nregs = 64,
+       .nregs = 80,
        .bank_address_words = 0,
        .set_timing = imx_ocotp_set_imx6_timing,
        .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
This page took 0.057165 seconds and 4 git commands to generate.