summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-11 12:28:58 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-11 12:40:10 -0500
commitdea1050312e1ea7d00cdaa8c6f434e56fd7a1caa (patch)
tree0b1c50f7bde175545443877dbccce61a9b8c207b
parentisr.c: Do not call _CPU_Initialize_vectors() if PIC Interrupt Model (diff)
downloadrtems-dea1050312e1ea7d00cdaa8c6f434e56fd7a1caa.tar.bz2
arm/cpu.h: Define CPU_SIMPLE_VECTORED_INTERRUPTS and remove _CPU_ISR_Initialize
-rw-r--r--cpukit/score/cpu/arm/rtems/score/cpu.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h
index 4f054e24c5..b12133f054 100644
--- a/cpukit/score/cpu/arm/rtems/score/cpu.h
+++ b/cpukit/score/cpu/arm/rtems/score/cpu.h
@@ -120,6 +120,11 @@
#define CPU_UNROLL_ENQUEUE_PRIORITY TRUE
+/*
+ * The ARM uses the PIC interrupt model.
+ */
+#define CPU_SIMPLE_VECTORED_INTERRUPTS FALSE
+
#define CPU_HAS_SOFTWARE_INTERRUPT_STACK FALSE
#define CPU_HAS_HARDWARE_INTERRUPT_STACK FALSE
@@ -388,8 +393,6 @@ void _CPU_Context_Initialize(
void _CPU_Initialize( void );
-#define _CPU_Initialize_vectors()
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,