diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-08-28 15:52:35 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-09-10 13:44:44 -0600 |
commit | 2083378ff0f096789dcc84a3e5b57891e053421c (patch) | |
tree | 141b90420e33bdda681c7e80f8184790201e76cf | |
parent | 1a7882de8c859467ce931ed23761db1e391aeaff (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/Kconfig | 2 |
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. |