From: Lukasz Majewski Date: Mon, 9 Sep 2019 10:06:46 +0000 (+0200) Subject: spl: Introduce SPL_DM_SPI Kconfig define X-Git-Tag: v2020.10~559^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f18845c27ad86e118b074ce545ce685cb9a97561;p=platform%2Fkernel%2Fu-boot.git spl: Introduce SPL_DM_SPI Kconfig define This define indicates if DM_SPI shall be supported in SPL. This allows proper operation of DM converted SPI drivers in SPL, which use #if !CONFIG_IS_ENABLED(DM_SPI) to also support not yet DM/DTS converted boards. Signed-off-by: Lukasz Majewski --- diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 7862a01..562eafe 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -697,6 +697,13 @@ config SPL_UBI Enable support for loading payloads from UBI. See README.ubispl for more info. +if SPL_DM +config SPL_DM_SPI + bool "Support SPI DM drivers in SPL" + help + Enable support for SPI DM drivers in SPL. + +endif if SPL_UBI config SPL_UBI_LOAD_BY_VOLNAME bool "Support loading volumes by name"