misc: k3_fuse: Enable fuse Sense support

fuse sense is essentially read, map it to fuse read.

Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Signed-off-by: Anshul Dalal <anshuld@ti.com>
This commit is contained in:
Vignesh Raghavendra
2026-03-13 14:58:27 -06:00
committed by Tom Rini
parent 494782b6e0
commit b533d457ae
+1 -1
View File
@@ -35,7 +35,7 @@ int fuse_read(u32 bank, u32 word, u32 *val)
int fuse_sense(u32 bank, u32 word, u32 *val)
{
return -EPERM;
return fuse_read(bank, word, val);
}
int fuse_prog(u32 bank, u32 word, u32 val)