From: Heinrich Schuchardt Date: Thu, 28 Aug 2025 13:52:35 +0000 (+0200) Subject: spl: SPL_DM_SPI_FLASH depends on SPL_DM_SPI X-Git-Tag: v2025.10-rc5~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2083378ff0f096789dcc84a3e5b57891e053421c;p=thirdparty%2Fu-boot.git 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 Acked-by: Peng Fan Acked-by: Anshul Dalal --- 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.