summaryrefslogtreecommitdiffstats
path: root/bsps/riscv/riscv/start/start.S
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/riscv/riscv/start/start.S')
-rw-r--r--bsps/riscv/riscv/start/start.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsps/riscv/riscv/start/start.S b/bsps/riscv/riscv/start/start.S
index feb07feedf..8b2575e87b 100644
--- a/bsps/riscv/riscv/start/start.S
+++ b/bsps/riscv/riscv/start/start.S
@@ -61,8 +61,8 @@ SYM(_start):
/* Load stack pointer and branch to secondary processor start if necessary */
#ifdef RTEMS_SMP
- LADDR sp, _Configuration_Interrupt_stack_area_begin
- LADDR t2, _Configuration_Interrupt_stack_size
+ LADDR sp, _ISR_Stack_area_begin
+ LADDR t2, _ISR_Stack_size
csrr s0, mhartid
LADDR t0, _Per_CPU_Information
slli t1, s0, PER_CPU_CONTROL_SIZE_LOG2
@@ -71,7 +71,7 @@ SYM(_start):
bnez s0, .Lstart_on_secondary_processor
add sp, sp, t2
#else
- LADDR sp, _Configuration_Interrupt_stack_area_end
+ LADDR sp, _ISR_Stack_area_end
#endif
#ifdef BSP_START_COPY_FDT_FROM_U_BOOT