summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-27 15:02:02 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-27 15:02:02 +0000
commit4990792b2fcd0f234c1bdc6e449b787bdbe3e57d (patch)
tree9be9e72e9c999d983982d560f40edca17f50175d /cpukit/score/cpu
parent2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-4990792b2fcd0f234c1bdc6e449b787bdbe3e57d.tar.bz2
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* context_init.c, context_switch.S, cpu.c, cpu_asm.c: Add include of config.h
Diffstat (limited to 'cpukit/score/cpu')
-rw-r--r--cpukit/score/cpu/m32r/ChangeLog5
-rw-r--r--cpukit/score/cpu/m32r/context_init.c4
-rw-r--r--cpukit/score/cpu/m32r/context_switch.S4
-rw-r--r--cpukit/score/cpu/m32r/cpu.c4
-rw-r--r--cpukit/score/cpu/m32r/cpu_asm.c4
5 files changed, 21 insertions, 0 deletions
diff --git a/cpukit/score/cpu/m32r/ChangeLog b/cpukit/score/cpu/m32r/ChangeLog
index f8de30afce..ad4b2a705d 100644
--- a/cpukit/score/cpu/m32r/ChangeLog
+++ b/cpukit/score/cpu/m32r/ChangeLog
@@ -1,3 +1,8 @@
+2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * context_init.c, context_switch.S, cpu.c, cpu_asm.c: Add include of
+ config.h
+
2009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
diff --git a/cpukit/score/cpu/m32r/context_init.c b/cpukit/score/cpu/m32r/context_init.c
index bc33d2b84b..d2aa56619c 100644
--- a/cpukit/score/cpu/m32r/context_init.c
+++ b/cpukit/score/cpu/m32r/context_init.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <stdint.h>
#include <rtems/system.h>
diff --git a/cpukit/score/cpu/m32r/context_switch.S b/cpukit/score/cpu/m32r/context_switch.S
index d673aa0889..10baac910d 100644
--- a/cpukit/score/cpu/m32r/context_switch.S
+++ b/cpukit/score/cpu/m32r/context_switch.S
@@ -11,6 +11,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define ARG_EXECUTING 8
#define ARG_HEIR 12
diff --git a/cpukit/score/cpu/m32r/cpu.c b/cpukit/score/cpu/m32r/cpu.c
index fa90835b9a..a518005ff3 100644
--- a/cpukit/score/cpu/m32r/cpu.c
+++ b/cpukit/score/cpu/m32r/cpu.c
@@ -11,6 +11,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems/system.h>
#include <rtems/score/isr.h>
diff --git a/cpukit/score/cpu/m32r/cpu_asm.c b/cpukit/score/cpu/m32r/cpu_asm.c
index b046ad4449..79e3c32392 100644
--- a/cpukit/score/cpu/m32r/cpu_asm.c
+++ b/cpukit/score/cpu/m32r/cpu_asm.c
@@ -15,6 +15,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems/system.h>
#include <rtems/score/cpu.h>