summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-27 15:01:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-27 15:01:57 +0000
commitc9f5531cc7639fd3c8ba9737890bc0c6282f840d (patch)
treef6ccae4d677f68ee1255ab1595c04ae9010605d3 /cpukit/score/cpu
parent2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c9f5531cc7639fd3c8ba9737890bc0c6282f840d.tar.bz2
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* context_init.c, context_switch.S, cpu.c, cpu_asm.c, varvects.S: Add include of config.h
Diffstat (limited to 'cpukit/score/cpu')
-rw-r--r--cpukit/score/cpu/m32c/ChangeLog5
-rw-r--r--cpukit/score/cpu/m32c/context_init.c4
-rw-r--r--cpukit/score/cpu/m32c/context_switch.S4
-rw-r--r--cpukit/score/cpu/m32c/cpu.c4
-rw-r--r--cpukit/score/cpu/m32c/cpu_asm.c4
-rw-r--r--cpukit/score/cpu/m32c/varvects.S4
6 files changed, 25 insertions, 0 deletions
diff --git a/cpukit/score/cpu/m32c/ChangeLog b/cpukit/score/cpu/m32c/ChangeLog
index 8f867b173d..4a9eb122f8 100644
--- a/cpukit/score/cpu/m32c/ChangeLog
+++ b/cpukit/score/cpu/m32c/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, varvects.S: Add
+ include of config.h
+
2009-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Make heap alignment 4 which is greater than
diff --git a/cpukit/score/cpu/m32c/context_init.c b/cpukit/score/cpu/m32c/context_init.c
index bff3eec0d9..2eda3cb331 100644
--- a/cpukit/score/cpu/m32c/context_init.c
+++ b/cpukit/score/cpu/m32c/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/m32c/context_switch.S b/cpukit/score/cpu/m32c/context_switch.S
index 7ca8525025..0060ce1898 100644
--- a/cpukit/score/cpu/m32c/context_switch.S
+++ b/cpukit/score/cpu/m32c/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/m32c/cpu.c b/cpukit/score/cpu/m32c/cpu.c
index e39ff23b86..20b949e174 100644
--- a/cpukit/score/cpu/m32c/cpu.c
+++ b/cpukit/score/cpu/m32c/cpu.c
@@ -11,6 +11,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems/system.h>
#include <rtems/score/isr.h>
#include <varvects.h>
diff --git a/cpukit/score/cpu/m32c/cpu_asm.c b/cpukit/score/cpu/m32c/cpu_asm.c
index 60671d312e..17d26a4634 100644
--- a/cpukit/score/cpu/m32c/cpu_asm.c
+++ b/cpukit/score/cpu/m32c/cpu_asm.c
@@ -25,6 +25,10 @@
* implementation in assembly should include "cpu_asm.h>
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems/system.h>
#include <rtems/score/cpu.h>
diff --git a/cpukit/score/cpu/m32c/varvects.S b/cpukit/score/cpu/m32c/varvects.S
index 43b924028f..c23d364cf8 100644
--- a/cpukit/score/cpu/m32c/varvects.S
+++ b/cpukit/score/cpu/m32c/varvects.S
@@ -30,6 +30,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/* This works with varvects.h
*/