From: Heiko Stuebner Date: Fri, 5 Jul 2024 07:48:41 +0000 (+0100) Subject: nvmem: rockchip-otp: set add_legacy_fixed_of_cells config option X-Git-Tag: microblaze-v6.13~604^2~31 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=2933e79db3c00a8cdc56f6bb050a857fec1875ad;p=linux-2.6-microblaze.git nvmem: rockchip-otp: set add_legacy_fixed_of_cells config option The Rockchip OTP describes its layout via devicetree subnodes, so set the appropriate property. Fixes: 2cc3b37f5b6d ("nvmem: add explicit config option to read old syntax fixed OF cells") Signed-off-by: Heiko Stuebner Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20240705074852.423202-5-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/nvmem/rockchip-otp.c b/drivers/nvmem/rockchip-otp.c index cb9aa5428350..7107d68a2f8c 100644 --- a/drivers/nvmem/rockchip-otp.c +++ b/drivers/nvmem/rockchip-otp.c @@ -255,6 +255,7 @@ static int rockchip_otp_read(void *context, unsigned int offset, static struct nvmem_config otp_config = { .name = "rockchip-otp", .owner = THIS_MODULE, + .add_legacy_fixed_of_cells = true, .read_only = true, .stride = 1, .word_size = 1,