summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 21:19:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 21:19:52 +0000
commitf9f823962824988b384dc79140c848fc6d787abc (patch)
tree67cf93993548ff0f02bcf325bb8fe3194d160f04 /cpukit
parent2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-f9f823962824988b384dc79140c848fc6d787abc.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Eliminate the interrupt_vector_table field in the m68k CPU Table since it is never read.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/m68k/ChangeLog5
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h9
2 files changed, 5 insertions, 9 deletions
diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog
index 6bbb58afc8..36e5c2488f 100644
--- a/cpukit/score/cpu/m68k/ChangeLog
+++ b/cpukit/score/cpu/m68k/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * rtems/score/cpu.h: Eliminate the interrupt_vector_table field in the
+ m68k CPU Table since it is never read.
+
2007-08-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/m68k.h: Add stubs for mcf5307, mcf5407, mcfv4e.
diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index a973e406ab..e71b2be2dd 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -202,8 +202,6 @@ typedef struct {
void * (*stack_allocate_hook)( uint32_t );
void (*stack_free_hook)( void* );
/* end of fields required on all CPUs */
-
- m68k_isr *interrupt_vector_table;
} rtems_cpu_table;
/*
@@ -211,13 +209,6 @@ typedef struct {
* the file rtems/system.h.
*/
-/*
- * Macros to access M68K specific additions to the CPU Table
- */
-
-#define rtems_cpu_configuration_get_interrupt_vector_table() \
- (_CPU_Table.interrupt_vector_table)
-
/* variables */
SCORE_EXTERN void *_CPU_Interrupt_stack_low;