summaryrefslogtreecommitdiffstats
path: root/bsps/lm32
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-06 16:58:02 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 08:09:20 +0100
commitff081aee72436131cf11e3a35f96a6405c3a4d78 (patch)
treee64045cd5e8933e07eb1c6ae2c60bf426edc161a /bsps/lm32
parentpsxtmtests_plan.csv: Add psxtmonce01 (diff)
downloadrtems-ff081aee72436131cf11e3a35f96a6405c3a4d78.tar.bz2
score: Rename interrupt stack symbols
Rename * _Configuration_Interrupt_stack_area_begin in _ISR_Stack_area_begin, * _Configuration_Interrupt_stack_area_end in _ISR_Stack_area_end, and * _Configuration_Interrupt_stack_size in _ISR_Stack_size. Move definitions to <rtems/score/isr.h>. The new names are considerable shorter and in the right namespace. Update #3459.
Diffstat (limited to 'bsps/lm32')
-rw-r--r--bsps/lm32/shared/start/start.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsps/lm32/shared/start/start.S b/bsps/lm32/shared/start/start.S
index 3f4a6c672b..70e4d68859 100644
--- a/bsps/lm32/shared/start/start.S
+++ b/bsps/lm32/shared/start/start.S
@@ -126,8 +126,8 @@ crt0:
nop
nop
/* Initialize stack pointer */
- mvhi sp, hi(_Configuration_Interrupt_stack_area_end-4)
- ori sp, sp, lo(_Configuration_Interrupt_stack_area_end-4)
+ mvhi sp, hi(_ISR_Stack_area_end-4)
+ ori sp, sp, lo(_ISR_Stack_area_end-4)
/* Initialize global pointer */
mvhi gp, hi(_edata)
ori gp, gp, lo(_edata)