From 45dcc6c5dbfb98944133a7c046959d763021386a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20G=C5=82=C4=85bek?= Date: Fri, 11 Aug 2023 15:46:43 +0200 Subject: [PATCH] drivers: spi_nrfx_spis: Enable required SPI_SLAVE option in Kconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a follow-up to commit fa609e58449392ffd2b60e5bb9b59ef8e959762a. This driver implements SPI slave operations only and cannot be used without the corresponding Kconfig option enabled. Signed-off-by: Andrzej Głąbek --- drivers/spi/Kconfig.nrfx | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/Kconfig.nrfx b/drivers/spi/Kconfig.nrfx index d2030a1a2ea..5b642a32b68 100644 --- a/drivers/spi/Kconfig.nrfx +++ b/drivers/spi/Kconfig.nrfx @@ -30,6 +30,7 @@ config SPI_NRFX_SPIM config SPI_NRFX_SPIS def_bool y depends on DT_HAS_NORDIC_NRF_SPIS_ENABLED + select SPI_SLAVE select NRFX_SPIS0 if HAS_HW_NRF_SPIS0 select NRFX_SPIS1 if HAS_HW_NRF_SPIS1 select NRFX_SPIS2 if HAS_HW_NRF_SPIS2