summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/ChangeLog4
-rw-r--r--c/src/exec/include/rtems/bspIo.h10
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/include/rtems/bspIo.h10
4 files changed, 18 insertions, 10 deletions
diff --git a/c/src/exec/ChangeLog b/c/src/exec/ChangeLog
index 2ee7092742..4fbeffaccf 100644
--- a/c/src/exec/ChangeLog
+++ b/c/src/exec/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * include/rtems/bspIo.h: Fix cpp-guards, remove references to i386.
+
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
diff --git a/c/src/exec/include/rtems/bspIo.h b/c/src/exec/include/rtems/bspIo.h
index 0ff070c4c5..0e2cdfb713 100644
--- a/c/src/exec/include/rtems/bspIo.h
+++ b/c/src/exec/include/rtems/bspIo.h
@@ -3,7 +3,6 @@
* This include file contains declaration of interface that
* will be provided by the file contained in this directory.
*
- *
* COPYRIGHT (c) 1998 valette@crf.canon.fr
*
* The license and distribution terms for this file may be
@@ -12,8 +11,8 @@
*
* $Id$
*/
-#ifndef _LIBBSP_I386_SHARED_IO_BSP_IO_H
-#define _LIBBSP_I386_SHARED_IO_BSP_IO_H
+#ifndef _rtems_bspIo_h
+#define _rtems_bspIo_h
/*
* All the functions declared as extern after this comment
@@ -26,12 +25,13 @@ typedef char (*BSP_polling_getchar_function_type) (void);
extern BSP_output_char_function_type BSP_output_char;
extern BSP_polling_getchar_function_type BSP_poll_char;
+
/*
* All the function declared as extern after this comment
- * are available for each ix86 BSP by compiling and linking
+ * are available for each BSP by compiling and linking
* the files contained in this directory PROVIDED definition
* and initialisation of the previous variable are done.
*/
-void printk(char *fmt, ...);
+extern void printk(char *fmt, ...);
#endif
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 2ee7092742..4fbeffaccf 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * include/rtems/bspIo.h: Fix cpp-guards, remove references to i386.
+
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
diff --git a/cpukit/include/rtems/bspIo.h b/cpukit/include/rtems/bspIo.h
index 0ff070c4c5..0e2cdfb713 100644
--- a/cpukit/include/rtems/bspIo.h
+++ b/cpukit/include/rtems/bspIo.h
@@ -3,7 +3,6 @@
* This include file contains declaration of interface that
* will be provided by the file contained in this directory.
*
- *
* COPYRIGHT (c) 1998 valette@crf.canon.fr
*
* The license and distribution terms for this file may be
@@ -12,8 +11,8 @@
*
* $Id$
*/
-#ifndef _LIBBSP_I386_SHARED_IO_BSP_IO_H
-#define _LIBBSP_I386_SHARED_IO_BSP_IO_H
+#ifndef _rtems_bspIo_h
+#define _rtems_bspIo_h
/*
* All the functions declared as extern after this comment
@@ -26,12 +25,13 @@ typedef char (*BSP_polling_getchar_function_type) (void);
extern BSP_output_char_function_type BSP_output_char;
extern BSP_polling_getchar_function_type BSP_poll_char;
+
/*
* All the function declared as extern after this comment
- * are available for each ix86 BSP by compiling and linking
+ * are available for each BSP by compiling and linking
* the files contained in this directory PROVIDED definition
* and initialisation of the previous variable are done.
*/
-void printk(char *fmt, ...);
+extern void printk(char *fmt, ...);
#endif