Skip to content

Commit 2e30230

Browse files
nordic-krchrlubos
authored andcommitted
mpsl: init: Add missing semicolon
FOR_EACH missed semicolon at the end and failed to compile. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
1 parent b480bf4 commit 2e30230

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

subsys/mpsl/init/mpsl_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ extern void rtc_pretick_rtc0_isr_hook(void);
7878
BUILD_ASSERT(!DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(node)), \
7979
"MPSL reserves " #node " on this SoC. Please disable this node in device tree")
8080
FOR_EACH(MPSL_BUILD_ASSERT_COUNTER_NODE_NOT_OKAY, (;),
81-
MPSL_INIT_SOC_COUNTER_RESERVED_NODES)
81+
MPSL_INIT_SOC_COUNTER_RESERVED_NODES);
8282
#undef MPSL_BUILD_ASSERT_COUNTER_NODE_NOT_OKAY
8383
#else
8484
#error "Counter DTS nodes reserved for MPSL are missing"

0 commit comments

Comments
 (0)