From 7212315114af1cf7cb0056026884f921faab914d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Wed, 2 Sep 2015 10:22:54 +0200 Subject: [PATCH] Kconfig: define missing symbol SPI and make DM_SPI depend on it --- drivers/spi/Kconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 7ae2727cf7..3ce5a6b616 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -1,6 +1,9 @@ +config SPI + bool "Enable SPI bus support" + config DM_SPI bool "Enable Driver Model for SPI drivers" - depends on DM + depends on DM && SPI help Enable driver model for SPI. The SPI slave interface (spi_setup_slave(), spi_xfer(), etc.) is then implemented by -- 2.39.2