From ee29de05bc8c376620d95756a6034a96f690b7b5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 4 Dec 2007 22:19:10 +0000 Subject: 2007-12-04 Joel Sherrill * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms. --- cpukit/score/cpu/arm/ChangeLog | 6 ++++++ cpukit/score/cpu/arm/cpu.c | 3 --- cpukit/score/cpu/arm/rtems/score/cpu.h | 10 ---------- 3 files changed, 6 insertions(+), 13 deletions(-) (limited to 'cpukit/score/cpu/arm') diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog index 113cb25889..e1a57544b5 100644 --- a/cpukit/score/cpu/arm/ChangeLog +++ b/cpukit/score/cpu/arm/ChangeLog @@ -1,3 +1,9 @@ +2007-12-04 Joel Sherrill + + * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU + Table to Configuration Table. Eliminate CPU Table from all ports. + Delete references to CPU Table in all forms. + 2007-12-03 Joel Sherrill * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to diff --git a/cpukit/score/cpu/arm/cpu.c b/cpukit/score/cpu/arm/cpu.c index 9af0fe3dd0..8e7e23640c 100644 --- a/cpukit/score/cpu/arm/cpu.c +++ b/cpukit/score/cpu/arm/cpu.c @@ -30,13 +30,10 @@ * This routine performs processor dependent initialization. * * INPUT PARAMETERS: - * cpu_table - CPU table to initialize * thread_dispatch - address of ISR disptaching routine (unused) - * */ void _CPU_Initialize( - rtems_cpu_table *cpu_table, void (*thread_dispatch) /* ignored on this CPU */ ) { diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h index 17c221ab43..30d2504e4b 100644 --- a/cpukit/score/cpu/arm/rtems/score/cpu.h +++ b/cpukit/score/cpu/arm/rtems/score/cpu.h @@ -379,15 +379,6 @@ extern void rtems_exception_init_mngt(); typedef CPU_Exception_frame CPU_Interrupt_frame; -/* - * The following table contains the information required to configure - * the XXX processor specific parameters. - */ - -typedef struct { - uint32_t interrupt_stack_size; -} rtems_cpu_table; - /* * This variable is optional. It is used on CPUs on which it is difficult * to generate an "uninitialized" FP context. It is filled in by @@ -706,7 +697,6 @@ void _CPU_Context_Initialize( */ void _CPU_Initialize( - rtems_cpu_table *cpu_table, void (*thread_dispatch) ); -- cgit v1.2.3