From 1b9dc5fa53b9de4f5f4823f3215a5fca1e4cfa0c Mon Sep 17 00:00:00 2001 From: Andrew Fernandes Date: Sun, 5 May 2019 11:12:48 -0700 Subject: [PATCH] drivers: spi: nrfx: fix a CMakeLists.txt bug introduced in e96673d Fix incorrect lowercase logical operators in a CMakeLists file. Signed-off-by: Andrew Fernandes --- soc/arm/nordic_nrf/nrf52/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/arm/nordic_nrf/nrf52/CMakeLists.txt b/soc/arm/nordic_nrf/nrf52/CMakeLists.txt index 05b428fec81..28dcff51cac 100644 --- a/soc/arm/nordic_nrf/nrf52/CMakeLists.txt +++ b/soc/arm/nordic_nrf/nrf52/CMakeLists.txt @@ -14,7 +14,7 @@ zephyr_sources_ifdef(CONFIG_ARM_MPU if(CONFIG_SOC_NRF52832) if(CONFIG_SOC_NRF52832_ALLOW_SPIM_DESPITE_PAN_58) - if(CONFIG_SPI_0_NRF_SPIM or CONFIG_SPI_1_NRF_SPIM or CONFIG_SPI_2_NRF_SPIM) + if(CONFIG_SPI_0_NRF_SPIM OR CONFIG_SPI_1_NRF_SPIM OR CONFIG_SPI_2_NRF_SPIM) message(WARNING "Both SOC_NRF52832_ALLOW_SPIM_DESPITE_PAN_58 and an NRF SPIM driver are enabled, therefore PAN 58 will apply if RXD.MAXCNT == 1 and TXD.MAXCNT <= 1") endif() endif()