summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2025-08-28 15:52:35 +0200
committerTom Rini <trini@konsulko.com>2025-09-10 13:44:44 -0600
commit2083378ff0f096789dcc84a3e5b57891e053421c (patch)
tree141b90420e33bdda681c7e80f8184790201e76cf
parent1a7882de8c859467ce931ed23761db1e391aeaff (diff)
spl: SPL_DM_SPI_FLASH depends on SPL_DM_SPI
The SPI flash driver does not build without SPI support enabled. Fixes: 4151f4f822bb ("spl: Rework and tighten some dependencies") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Acked-by: Peng Fan <peng.fan@nxp.com> Acked-by: Anshul Dalal <anshuld@ti.com>
-rw-r--r--common/spl/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index ab05536bd02..f34b96efc02 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -1141,7 +1141,7 @@ config SPL_DM_SPI
config SPL_DM_SPI_FLASH
bool "Support SPI DM FLASH drivers in SPL"
- depends on SPL_DM
+ depends on SPL_DM_SPI
help
Enable support for SPI DM flash drivers in SPL.