summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/qoriq
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/powerpc/qoriq')
-rw-r--r--bsps/powerpc/qoriq/start/bspsmp.c3
-rw-r--r--bsps/powerpc/qoriq/start/bspstart.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/bsps/powerpc/qoriq/start/bspsmp.c b/bsps/powerpc/qoriq/start/bspsmp.c
index 57a61e0776..b5a2686d96 100644
--- a/bsps/powerpc/qoriq/start/bspsmp.c
+++ b/bsps/powerpc/qoriq/start/bspsmp.c
@@ -47,8 +47,7 @@ static bool is_started_by_u_boot(uint32_t cpu_index)
void qoriq_start_thread(Per_CPU_Control *cpu_self)
{
ppc_exc_initialize_interrupt_stack(
- (uintptr_t) cpu_self->interrupt_stack_low,
- rtems_configuration_get_interrupt_stack_size()
+ (uintptr_t) cpu_self->interrupt_stack_low
);
bsp_interrupt_facility_initialize();
diff --git a/bsps/powerpc/qoriq/start/bspstart.c b/bsps/powerpc/qoriq/start/bspstart.c
index 76af17919e..c0b1034736 100644
--- a/bsps/powerpc/qoriq/start/bspstart.c
+++ b/bsps/powerpc/qoriq/start/bspstart.c
@@ -113,8 +113,7 @@ void qoriq_initialize_exceptions(void *interrupt_stack_begin)
uintptr_t addr;
ppc_exc_initialize_interrupt_stack(
- (uintptr_t) interrupt_stack_begin,
- rtems_configuration_get_interrupt_stack_size()
+ (uintptr_t) interrupt_stack_begin
);
addr = (uintptr_t) bsp_exc_vector_base;