Skip to content

Commit 1a5495a

Browse files
galakcarlescufi
authored andcommitted
tests: kernel: smp_boot_delay: Convert CONFIG_MP_NUM_CPUS handling
Move build and build system checks to use CONFIG_MP_MAX_NUM_CPUS as we phase out CONFIG_MP_NUM_CPUS. Signed-off-by: Kumar Gala <[email protected]>
1 parent f7522cb commit 1a5495a

File tree

1 file changed

+1
-1
lines changed
  • tests/kernel/smp_boot_delay/src

1 file changed

+1
-1
lines changed

tests/kernel/smp_boot_delay/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
BUILD_ASSERT(CONFIG_SMP);
1717
BUILD_ASSERT(CONFIG_SMP_BOOT_DELAY);
1818
BUILD_ASSERT(CONFIG_KERNEL_COHERENCE);
19-
BUILD_ASSERT(CONFIG_MP_NUM_CPUS > 1);
19+
BUILD_ASSERT(CONFIG_MP_MAX_NUM_CPUS > 1);
2020

2121
#define STACKSZ 2048
2222
char stack[STACKSZ];

0 commit comments

Comments
 (0)