summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-22 15:08:37 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-24 11:36:27 +0200
commit26a09f2c5b593c52ddd4857563dc310c798ef32e (patch)
tree79861fb83a0ea4e05f412a7fac22bf8b99fa9dce /cpukit/score/cpu/m68k
parentbsp/atsam: Fix BSP_INTERRUPT_VECTOR_COUNT (diff)
downloadrtems-26a09f2c5b593c52ddd4857563dc310c798ef32e.tar.bz2
score: Remove _CPU_Initialize_vectors()
This CPU port macro was not used. Since the _ISR_Vector_table[] is statically allocated, CPU ports could initialize this table in _CPU_Initialize() if necessary. Remove _CPU_Initialize_vectors() to simplify the CPU port interface.
Diffstat (limited to 'cpukit/score/cpu/m68k')
-rw-r--r--cpukit/score/cpu/m68k/include/rtems/score/cpu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/cpukit/score/cpu/m68k/include/rtems/score/cpu.h b/cpukit/score/cpu/m68k/include/rtems/score/cpu.h
index de7f8215bb..65ba0ef496 100644
--- a/cpukit/score/cpu/m68k/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/include/rtems/score/cpu.h
@@ -350,15 +350,12 @@ extern void* _VBR;
* ISR handler macros
*
* These macros perform the following functions:
- * + initialize the RTEMS vector table
* + disable all maskable CPU interrupts
* + restore previous interrupt level (enable)
* + temporarily restore interrupts (flash)
* + set a particular level
*/
-#define _CPU_Initialize_vectors()
-
#define _CPU_ISR_Disable( _level ) \
m68k_disable_interrupts( _level )