Re: [PATCH 05/21] imx9: soc: Change FSB directly access to fuse API

2024-09-17 Thread Fabio Estevam
On Mon, Sep 16, 2024 at 11:30 PM Peng Fan (OSS) wrote: > - fuse_read(2, 3, &val); > + ret = fuse_read(2, 3, &val); Please use proper definitions for the 2 and 3 here. > + > + ret = fuse_read(2, 3, &val); Same here. > + if (ret) > + val = 0; /* If read fus

[PATCH 05/21] imx9: soc: Change FSB directly access to fuse API

2024-09-16 Thread Peng Fan (OSS)
From: Ye Li To support OSCCA enabled part which has disabled FSB access from SOC, change directly read from FSB to use fuse_read API. Reviewed-by: Peng Fan Signed-off-by: Ye Li Signed-off-by: Peng Fan --- arch/arm/mach-imx/imx9/soc.c | 26 +- 1 file changed, 21 insert