summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:10 +0000
commitee29de05bc8c376620d95756a6034a96f690b7b5 (patch)
tree67c24fdf5b514680780f6c11015b5eedee230d4b /cpukit/score/cpu/m68k
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ee29de05bc8c376620d95756a6034a96f690b7b5.tar.bz2
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.
Diffstat (limited to 'cpukit/score/cpu/m68k')
-rw-r--r--cpukit/score/cpu/m68k/ChangeLog6
-rw-r--r--cpukit/score/cpu/m68k/cpu.c2
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h10
3 files changed, 6 insertions, 12 deletions
diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog
index 6914b2cc89..928937bb35 100644
--- a/cpukit/score/cpu/m68k/ChangeLog
+++ b/cpukit/score/cpu/m68k/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/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c
index 4ae862d8d5..6eb3ef7967 100644
--- a/cpukit/score/cpu/m68k/cpu.c
+++ b/cpukit/score/cpu/m68k/cpu.c
@@ -19,14 +19,12 @@
* This routine performs processor dependent initialization.
*
* INPUT PARAMETERS:
- * cpu_table - CPU table to initialize
* thread_dispatch - entry pointer to thread dispatcher
*
* OUTPUT PARAMETERS: NONE
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch) /* ignored on this CPU */
)
{
diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index 7d7ca24958..57652ca3e0 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -185,15 +185,6 @@ typedef struct {
uint32_t a0, a1, a2, a3, a4, a5, a6, a7;
} CPU_Exception_frame;
-/*
- * The following table contains the information required to configure
- * the m68k specific parameters.
- */
-
-typedef struct {
- uint32_t interrupt_stack_size;
-} rtems_cpu_table;
-
/* variables */
SCORE_EXTERN void *_CPU_Interrupt_stack_low;
@@ -562,7 +553,6 @@ void _CPU_Thread_Idle_body( void );
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch)
);