Skip to content

Commit 116ff69

Browse files
nordic-seglnordic-piks
authored andcommitted
tests: benchmarks: multicore: Fix use of undefined Kconfigs
Stop using - CONFIG_SOC_NRF54H20_ENGB_CPUPPR - CONFIG_SOC_NRF54H20_ENGB_CPUFLPR as they were removed in meantime. Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 9bb46e0 commit 116ff69

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/benchmarks/multicore/idle_flpr/remote/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project(remote)
1111

1212
target_sources(app PRIVATE src/main.c)
1313

14-
if((DEFINED CONFIG_SOC_NRF54H20_CPUFLPR) OR (DEFINED CONFIG_SOC_NRF54H20_ENGB_CPUFLPR))
14+
if(DEFINED CONFIG_SOC_NRF54H20_CPUFLPR)
1515
message(STATUS "Power Mode handler for RISC V is included.")
1616
target_sources(app PRIVATE ../../common/power_off.c)
1717
endif()

tests/benchmarks/multicore/idle_grtc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif()
1616

1717
project(idle_grtc)
1818

19-
if((DEFINED CONFIG_SOC_NRF54H20_CPUPPR) OR (DEFINED CONFIG_SOC_NRF54H20_ENGB_CPUPPR))
19+
if(DEFINED CONFIG_SOC_NRF54H20_CPUPPR)
2020
message(STATUS "Power Mode handler for RISC V is included.")
2121
target_sources(app PRIVATE ${ZEPHYR_NRF_MODULE_DIR}/tests/benchmarks/multicore/common/power_off.c)
2222
endif()

tests/benchmarks/multicore/idle_ppr/remote/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project(remote)
1111

1212
target_sources(app PRIVATE ../src/main.c)
1313

14-
if((DEFINED CONFIG_SOC_NRF54H20_CPUPPR) OR (DEFINED CONFIG_SOC_NRF54H20_ENGB_CPUPPR))
14+
if(DEFINED CONFIG_SOC_NRF54H20_CPUPPR)
1515
message(STATUS "Power Mode handler for RISC V is included.")
1616
target_sources(app PRIVATE ../../common/power_off.c)
1717
endif()

tests/benchmarks/multicore/idle_stm/remote/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project(remote)
1111

1212
target_sources(app PRIVATE ../src/main.c)
1313

14-
if((DEFINED CONFIG_SOC_NRF54H20_CPUPPR) OR (DEFINED CONFIG_SOC_NRF54H20_ENGB_CPUPPR))
14+
if(DEFINED CONFIG_SOC_NRF54H20_CPUPPR)
1515
message(STATUS "Power Mode handler for RISC V is included.")
1616
target_sources(app PRIVATE ../../common/power_off.c)
1717
endif()

0 commit comments

Comments
 (0)