From ff081aee72436131cf11e3a35f96a6405c3a4d78 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 6 Nov 2018 16:58:02 +0100 Subject: 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 . The new names are considerable shorter and in the right namespace. Update #3459. --- bsps/m68k/mcf52235/start/start.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bsps/m68k/mcf52235/start/start.S') diff --git a/bsps/m68k/mcf52235/start/start.S b/bsps/m68k/mcf52235/start/start.S index ecb2c5c980..c71f4fed8a 100644 --- a/bsps/m68k/mcf52235/start/start.S +++ b/bsps/m68k/mcf52235/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 */ @@ -355,7 +355,7 @@ SYM(start): movec d0, %rambar /* Locate Stack Pointer */ - move.l #_Configuration_Interrupt_stack_area_end, sp + move.l #_ISR_Stack_area_end, sp /* Initialize FLASHBAR */ move.l #_FlashBase, d0 @@ -367,7 +367,7 @@ SYM(start): _continue_startup: /* Locate Stack Pointer */ - move.l #_Configuration_Interrupt_stack_area_end, sp + move.l #_ISR_Stack_area_end, sp /* Save off intial D0 and D1 to RAM */ move.l d6, SYM(_d0_reset) -- cgit v1.2.3