Skip to content

Commit 072fcab

Browse files
committed
modules: tf-m: Fix referencing invalid Kconfigs
These Kconfigs do not exist Signed-off-by: Jamie McCrae <[email protected]>
1 parent ab69574 commit 072fcab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/trusted-firmware-m/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ if(CONFIG_TFM_NRF_PROVISIONING)
141141
")
142142
endif()
143143

144-
if(CONFIG_NFCT_PINS_AS_GPIOS OR CONFIG_TFM_NFCT_PINS_AS_GPIOS)
144+
if(CONFIG_TFM_NFCT_PINS_AS_GPIOS)
145145
set_property(TARGET zephyr_property_target
146146
APPEND PROPERTY TFM_CMAKE_OPTIONS
147147
-DNRF_CONFIG_NFCT_PINS_AS_GPIOS=ON

modules/trusted-firmware-m/tfm_boards/common/config.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set(NRF_ALLOW_NON_SECURE_FAULT_HANDLING OFF CACHE BOOL "Allow
2424
set(TFM_DUMMY_PROVISIONING OFF CACHE BOOL "Provision with dummy values. NOT to be used in production")
2525
set(PLATFORM_DEFAULT_PROVISIONING OFF CACHE BOOL "Use default provisioning implementation")
2626
set(NRF_PROVISIONING OFF CACHE BOOL "Use Nordic provisioning implementation")
27-
set(CONFIG_NFCT_PINS_AS_GPIOS OFF CACHE BOOL "Use NFCT pins as GPIOs.")
27+
set(NRF_CONFIG_NFCT_PINS_AS_GPIOS OFF CACHE BOOL "Use NFCT pins as GPIOs.")
2828
set(CONFIG_NRF_TRACE_PORT OFF CACHE BOOL "Enable trace port.")
2929
set(CONFIG_NRF_APPROTECT_LOCK OFF CACHE BOOL "Enable approtect.")
3030
set(CONFIG_NRF_APPROTECT_USER_HANDLING OFF CACHE BOOL "Enable approtect user handling.")

0 commit comments

Comments
 (0)