diff options
| author | Simon Glass <[email protected]> | 2024-09-20 09:24:42 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-03 11:52:17 -0600 |
| commit | fe38b88453d2ed40e1009d22f3f4d4213d2016b7 (patch) | |
| tree | e2b1ba33b82de023a4e42b79d8dfd1181a85f08f | |
| parent | 877bae24b0424a767dd2cb52bd5814199b47f686 (diff) | |
rockchip: Provided SPL control over efuse presence
This driver should not generally be present in SPL, even if misc devices
are enabled. Update the Makefile rule accordingly.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | drivers/misc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index e53d52c47b3..ff984d7b191 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -68,7 +68,7 @@ obj-$(CONFIG_QFW_MMIO) += qfw_mmio.o obj-$(CONFIG_QFW_SMBIOS) += qfw_smbios.o obj-$(CONFIG_SANDBOX) += qfw_sandbox.o endif -obj-$(CONFIG_ROCKCHIP_EFUSE) += rockchip-efuse.o +obj-$(CONFIG_$(SPL_TPL_)ROCKCHIP_EFUSE) += rockchip-efuse.o obj-$(CONFIG_ROCKCHIP_OTP) += rockchip-otp.o obj-$(CONFIG_$(SPL_TPL_)ROCKCHIP_IODOMAIN) += rockchip-io-domain.o obj-$(CONFIG_SANDBOX) += syscon_sandbox.o misc_sandbox.o |
