summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/rtems/score/cpu.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-05 10:16:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-05 13:45:37 +0200
commit007bdc4f5953ddd36f166a2d4e69352d778384ed (patch)
tree9d9156e77d660cff0bf5a2dc95246b15464fdf64 /cpukit/score/cpu/arm/rtems/score/cpu.h
parentsptests/sp37: Add ISR set/get level tests (diff)
downloadrtems-007bdc4f5953ddd36f166a2d4e69352d778384ed.tar.bz2
arm: Fix CPU_MODES_INTERRUPT_MASK
The set of interrupt levels must be a continuous range of non-negative integers starting at zero.
Diffstat (limited to 'cpukit/score/cpu/arm/rtems/score/cpu.h')
-rw-r--r--cpukit/score/cpu/arm/rtems/score/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h
index 602783e443..a8e9493fd0 100644
--- a/cpukit/score/cpu/arm/rtems/score/cpu.h
+++ b/cpukit/score/cpu/arm/rtems/score/cpu.h
@@ -165,7 +165,7 @@
* operating system support for a FIQ, she can trigger a software interrupt and
* service the request in a two-step process.
*/
-#define CPU_MODES_INTERRUPT_MASK 0x80
+#define CPU_MODES_INTERRUPT_MASK 0x1
#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )