summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/mcf5225x
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/m68k/mcf5225x
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/m68k/mcf5225x')
-rw-r--r--bsps/m68k/mcf5225x/start/start.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsps/m68k/mcf5225x/start/start.S b/bsps/m68k/mcf5225x/start/start.S
index 19d9038431..4513f663c0 100644
--- a/bsps/m68k/mcf5225x/start/start.S
+++ b/bsps/m68k/mcf5225x/start/start.S
@@ -21,7 +21,7 @@ BEGIN_CODE
PUBLIC (_INTERRUPT_VECTOR)
SYM(_INTERRUPT_VECTOR):
- .long _Configuration_Interrupt_stack_area_end /* 00 Initial 'SSP' */
+ .long _ISR_Stack_area_end /* 00 Initial 'SSP' */
.long SYM(start) /* 01 Initial PC */
.long SYM(_uhoh) /* 02 Access Error */
.long SYM(_uhoh) /* 03 Address Error */
@@ -359,7 +359,7 @@ SYM(start):
movec d7, %rambar
/* Locate Stack Pointer */
- move.l #_Configuration_Interrupt_stack_area_end, sp
+ move.l #_ISR_Stack_area_end, sp
/* Initialize FLASHBAR */
move.l #_FlashBase, d7
@@ -371,7 +371,7 @@ SYM(start):
_continue_startup:
/* Locate Stack Pointer */
-// move.l #_Configuration_Interrupt_stack_area_end, sp //is done automatically by the CPU
+// move.l #_ISR_Stack_area_end, sp //is done automatically by the CPU
/*
* Remainder of the startup code is handled by C code