summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/virtex
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-08-31 07:44:53 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-09-03 07:03:09 +0200
commitfad3f79b883100394a5a7e51e93f95eaaafd50f8 (patch)
treed325463fbefc3c19839d7cca89dac7a9e2b2b211 /bsps/powerpc/virtex
parentbootstrap: Correct help message (diff)
downloadrtems-fad3f79b883100394a5a7e51e93f95eaaafd50f8.tar.bz2
bsps: BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN
Remove the BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN hack. The interrupt stacks are now allocated by the linker. Update #3459.
Diffstat (limited to 'bsps/powerpc/virtex')
-rw-r--r--bsps/powerpc/virtex/include/bsp.h2
-rw-r--r--bsps/powerpc/virtex/start/bspstart.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/bsps/powerpc/virtex/include/bsp.h b/bsps/powerpc/virtex/include/bsp.h
index faea72e25e..17af5214c2 100644
--- a/bsps/powerpc/virtex/include/bsp.h
+++ b/bsps/powerpc/virtex/include/bsp.h
@@ -59,8 +59,6 @@ extern "C" {
#define BSP_FEATURE_IRQ_EXTENSION
-#define BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN
-
/* Network Defines */
#if 1 /* EB/doe changes */
#define RTEMS_BSP_NETWORK_DRIVER_NAME "eth0"
diff --git a/bsps/powerpc/virtex/start/bspstart.c b/bsps/powerpc/virtex/start/bspstart.c
index be7f00437a..5c0547aa24 100644
--- a/bsps/powerpc/virtex/start/bspstart.c
+++ b/bsps/powerpc/virtex/start/bspstart.c
@@ -98,7 +98,7 @@ void bsp_start( void )
* Initialize default raw exception handlers.
*/
ppc_exc_initialize_with_vector_base(
- (uintptr_t) bsp_section_work_begin,
+ (uintptr_t) _Configuration_Interrupt_stack_area_begin,
rtems_configuration_get_interrupt_stack_size(),
virtex_exc_vector_base
);