summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/c4x
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/c4x')
-rw-r--r--cpukit/score/cpu/c4x/ChangeLog6
-rw-r--r--cpukit/score/cpu/c4x/cpu.c2
-rw-r--r--cpukit/score/cpu/c4x/rtems/score/cpu.h14
3 files changed, 6 insertions, 16 deletions
diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog
index 0974436247..ba902ad62b 100644
--- a/cpukit/score/cpu/c4x/ChangeLog
+++ b/cpukit/score/cpu/c4x/ChangeLog
@@ -1,3 +1,9 @@
+2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * 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 <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
diff --git a/cpukit/score/cpu/c4x/cpu.c b/cpukit/score/cpu/c4x/cpu.c
index e98bf9c9ed..e7f485615c 100644
--- a/cpukit/score/cpu/c4x/cpu.c
+++ b/cpukit/score/cpu/c4x/cpu.c
@@ -22,7 +22,6 @@
* This routine performs processor dependent initialization.
*
* INPUT PARAMETERS:
- * cpu_table - CPU table to initialize
* thread_dispatch - address of disptaching routine
*
* C4x Specific Information:
@@ -30,7 +29,6 @@
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch) /* ignored on this CPU */
)
{
diff --git a/cpukit/score/cpu/c4x/rtems/score/cpu.h b/cpukit/score/cpu/c4x/rtems/score/cpu.h
index c5cec7a6ff..6809c1d14e 100644
--- a/cpukit/score/cpu/c4x/rtems/score/cpu.h
+++ b/cpukit/score/cpu/c4x/rtems/score/cpu.h
@@ -520,19 +520,6 @@ typedef struct {
} CPU_Interrupt_frame;
/*
- * The following table contains the information required to configure
- * the C4x processor specific parameters.
- *
- * C4x Specific Information:
- *
- * XXXanswer
- */
-
-typedef struct {
- uint32_t interrupt_stack_size;
-} rtems_cpu_table;
-
-/*
* Macros to access C4X specific additions to the CPU Table
*
* C4x Specific Information:
@@ -1076,7 +1063,6 @@ void _CPU_Context_Initialize(
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch)
);