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/powerpc/t32mppc/start/bspstart.c | 2 +- bsps/powerpc/t32mppc/start/start.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bsps/powerpc/t32mppc') diff --git a/bsps/powerpc/t32mppc/start/bspstart.c b/bsps/powerpc/t32mppc/start/bspstart.c index f7d68340ea..c3d03e789b 100644 --- a/bsps/powerpc/t32mppc/start/bspstart.c +++ b/bsps/powerpc/t32mppc/start/bspstart.c @@ -49,7 +49,7 @@ static void t32mppc_initialize_exceptions(void) uintptr_t addr; ppc_exc_initialize_interrupt_stack( - (uintptr_t) _Configuration_Interrupt_stack_area_begin + (uintptr_t) _ISR_Stack_area_begin ); addr = (uintptr_t) bsp_exc_vector_base; diff --git a/bsps/powerpc/t32mppc/start/start.S b/bsps/powerpc/t32mppc/start/start.S index e4066adb6f..ac7d6f5de7 100644 --- a/bsps/powerpc/t32mppc/start/start.S +++ b/bsps/powerpc/t32mppc/start/start.S @@ -34,7 +34,7 @@ _start: mtspr HID0, r0 /* Initialize start stack */ - LA r1, _Configuration_Interrupt_stack_area_end + LA r1, _ISR_Stack_area_end subi r1, r1, 16 li r0, 0 stw r0, 0(r1) -- cgit v1.2.3