summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/nvram
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-12-31 09:28:02 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-12-31 09:28:02 +0000
commitda261595f5cacf0dca44511afd9788fdbeea99d9 (patch)
tree3cc9521c7ff9342deb57c7dc3d864bf84568842a /c/src/lib/libbsp/powerpc/gen5200/nvram
parent2005-12-31 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-da261595f5cacf0dca44511afd9788fdbeea99d9.tar.bz2
Misc include file fixes.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/gen5200/nvram')
-rw-r--r--c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.c14
-rw-r--r--c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.h8
2 files changed, 14 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.c b/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.c
index 85b2c4a13e..3596b0ca9f 100644
--- a/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.c
+++ b/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.c
@@ -30,6 +30,10 @@
|*do not edit here) |
|*****************************************************************|
|* $Log$
+|* Revision 1.1 2005/12/31 05:09:26 ralf
+|* New (CVS import Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>'s
+|* submission).
+|*
|* Revision 1.4 2005/12/09 08:57:03 thomas
|* added/modifed file headers
|*
@@ -98,13 +102,11 @@
#include <rtems/libio.h>
#include <errno.h>
#include <string.h>
-/*#include "../include/bsp.h"*/
-#include "../include/bsp.h"
-#include "../include/mpc5200.h"
-/*#include "../nvram/nvram.h"*/
-#include "../nvram/nvram.h"
-#include "../nvram/m93cxx.h"
#include <stdio.h>
+#include <bsp.h>
+#include "../include/mpc5200.h"
+#include "nvram.h"
+#include "m93cxx.h"
/*
* Simple usec delay function using lower half of HARPO Time Base Register
diff --git a/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.h b/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.h
index 80c47aea25..f03a13ecd6 100644
--- a/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.h
+++ b/c/src/lib/libbsp/powerpc/gen5200/nvram/nvram.h
@@ -30,6 +30,10 @@
|*do not edit here) |
|*****************************************************************|
|* $Log$
+|* Revision 1.1 2005/12/31 05:09:26 ralf
+|* New (CVS import Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>'s
+|* submission).
+|*
|* Revision 1.3 2005/12/09 08:57:03 thomas
|* added/modifed file headers
|*
@@ -101,8 +105,8 @@
extern "C" {
#endif
-/* include "../include/bsp.h" */
-#include "../include/bsp.h"
+/* include <bsp.h> */
+#include <bsp.h>
/* Macros for TBL read access */
#define TBL_READ(count) __asm__ volatile ("mftb %0\n" : "=r" (count) : "0" (count))