summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-25 10:46:15 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-26 11:55:47 +0200
commit0c3edbf0cf9a9a2a67cbb15f8f960b39eb4eda77 (patch)
tree9d5f7f434f7044ef992bcc53c8f29f375aa4bcae /c/src/lib/libcpu/powerpc
parentscore: Include missing <rtems/score/thread.h> (diff)
downloadrtems-0c3edbf0cf9a9a2a67cbb15f8f960b39eb4eda77.tar.bz2
Include missing <rtems/score/threaddispatch.h>
Diffstat (limited to 'c/src/lib/libcpu/powerpc')
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_hdl.c6
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_print.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_hdl.c b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_hdl.c
index 228c030f16..daae4e2959 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_hdl.c
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_hdl.c
@@ -8,11 +8,11 @@
* http://www.rtems.com/license/LICENSE.
*/
-#include <rtems.h>
-#include <rtems/score/apiext.h>
-
#include <bsp/vectors.h>
+#include <rtems/score/apiext.h>
+#include <rtems/score/threaddispatch.h>
+
/* Provide temp. storage space for a few registers.
* This is used by the assembly code prior to setting up
* the stack.
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_print.c b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_print.c
index 6172ab650d..666685b519 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_print.c
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_print.c
@@ -19,6 +19,8 @@
#include <bsp/vectors.h>
+#include <rtems/score/threaddispatch.h>
+
#ifndef __SPE__
#define GET_GPR(gpr) (gpr)
#else