Skip to content

Commit 0ff1e05

Browse files
stephanosiocarlescufi
authored andcommitted
arch: arm: Migrate to K_KERNEL_STACK_ARRAY_DECLARE
This commit updates all deprecated `K_KERNEL_STACK_ARRAY_EXTERN` macro usages to use the `K_KERNEL_STACK_ARRAY_DECLARE` macro instead. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 34704db commit 0ff1e05

File tree

1 file changed

+2
-2
lines changed
  • arch/arm/include/aarch32/cortex_m

1 file changed

+2
-2
lines changed

arch/arm/include/aarch32/cortex_m/stack.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
extern "C" {
2727
#endif
2828

29-
K_KERNEL_STACK_ARRAY_EXTERN(z_interrupt_stacks, CONFIG_MP_NUM_CPUS,
30-
CONFIG_ISR_STACK_SIZE);
29+
K_KERNEL_STACK_ARRAY_DECLARE(z_interrupt_stacks, CONFIG_MP_NUM_CPUS,
30+
CONFIG_ISR_STACK_SIZE);
3131

3232
/**
3333
*

0 commit comments

Comments
 (0)