
17 Sep
2024
17 Sep
'24
2:20 p.m.
On Mon, Sep 16, 2024 at 11:30 PM Peng Fan (OSS) peng.fan@oss.nxp.com 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 fuse failed, return as blank fuse */
ret = fuse_read(2, 4, &val2);
Same here.