summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/bfin
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/bfin
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/bfin')
-rw-r--r--cpukit/score/cpu/bfin/ChangeLog6
-rw-r--r--cpukit/score/cpu/bfin/cpu.c2
-rw-r--r--cpukit/score/cpu/bfin/rtems/score/cpu.h19
3 files changed, 6 insertions, 21 deletions
diff --git a/cpukit/score/cpu/bfin/ChangeLog b/cpukit/score/cpu/bfin/ChangeLog
index 2612f8e54b..a7e94ce466 100644
--- a/cpukit/score/cpu/bfin/ChangeLog
+++ b/cpukit/score/cpu/bfin/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/bfin/cpu.c b/cpukit/score/cpu/bfin/cpu.c
index cc85487e2e..2fecc9279d 100644
--- a/cpukit/score/cpu/bfin/cpu.c
+++ b/cpukit/score/cpu/bfin/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
*
* NO_CPU Specific Information:
@@ -32,7 +31,6 @@
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch) /* ignored on this CPU */
)
{
diff --git a/cpukit/score/cpu/bfin/rtems/score/cpu.h b/cpukit/score/cpu/bfin/rtems/score/cpu.h
index dd480567eb..2199c8bfd3 100644
--- a/cpukit/score/cpu/bfin/rtems/score/cpu.h
+++ b/cpukit/score/cpu/bfin/rtems/score/cpu.h
@@ -549,24 +549,6 @@ typedef struct {
/*uint32_t special_interrupt_register;*/
} CPU_Interrupt_frame;
-
-/**
- * The following table contains the information required to configure
- * the XXX processor specific parameters.
- *
- * Port Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
-typedef struct {
- /** This field specifies the size of the interrupt stack. If less than or
- * equal to the minimum stack size, then the interrupt stack will be of
- * minimum stack size.
- */
- 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
@@ -1162,7 +1144,6 @@ void _CPU_Context_Initialize(
* XXX document implementation including references if appropriate
*/
void _CPU_Initialize(
- rtems_cpu_table *cpu_table,
void (*thread_dispatch)
);