Message ID | 20200616230631.29189-30-trini@konsulko.com |
---|---|
State | New |
Headers | show |
Series | [PATCHv2,01/31] Convert CONFIG_AM335X_LCD to Kconfig | expand |
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index 54881a74124d..9559e938d262 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -4,7 +4,7 @@ # Wolfgang Denk, DENX Software Engineering, wd at denx.de. # There are many options which enable SPI, so make this library available -ifdef CONFIG_DM_SPI +ifdef CONFIG_$(SPL_TPL_)DM_SPI obj-y += spi-uclass.o obj-$(CONFIG_SANDBOX) += spi-emul-uclass.o obj-$(CONFIG_SOFT_SPI) += soft_spi.o
We need to ensure that in the cases where SPL / TPL do not use DM we do not try and build the core nor drivers that require DM. Cc: Jagan Teki <jagan at amarulasolutions.com> Signed-off-by: Tom Rini <trini at konsulko.com> --- drivers/spi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)