From 1d77a98b3d8c39a1421b7ae44186cb3a1c22ec7a Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 26 Sep 2025 09:31:38 -0600 Subject: [PATCH] misc: ti: k3: Tighten K3_FUSE dependencies This driver cannot build without access to some platform specific header files. Express those requirements in Kconfig as well. Signed-off-by: Tom Rini --- drivers/misc/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 29b84430ff5..e3a207866ea 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -440,6 +440,7 @@ config STM32MP_FUSE config K3_FUSE bool "Enable TI K3 fuse wrapper providing the fuse API" depends on MISC && CMD_FUSE && CMD_FUSE_WRITEBUFF + depends on ARCH_K3 help If you say Y here, you will get support for the fuse API (OTP) for TI K3 architecture. -- 2.47.3