2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* console/console.c: Include rtems/bspIo.h instead of bspIo.h.
This commit is contained in:
Joel Sherrill
2002-01-04 17:40:51 +00:00
parent eb24fb11ce
commit 4385f2df77
6 changed files with 15 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/console.c: Include rtems/bspIo.h instead of bspIo.h.
2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Introduce RTEMS_BSP_CONFIGURE.

View File

@@ -273,7 +273,7 @@ rtems_device_driver console_control(
return RTEMS_SUCCESSFUL;
}
#include <bspIo.h>
#include <rtems/bspIo.h>
void P4000_output_char(char c) { outbyte( c ); }

View File

@@ -1,3 +1,7 @@
2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/console.c: Include rtems/bspIo.h instead of bspIo.h.
2001-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove RTEMS_ENABLE_NETWORKING.

View File

@@ -30,7 +30,7 @@
#include <bsp.h> /* Must be before libio.h */
#include <rtems/libio.h>
#include <termios.h>
#include <bspIo.h>
#include <rtems/bspIo.h>
static void _BSP_null_char( char c ) {return;}
BSP_output_char_function_type BSP_output_char = _BSP_null_char;

View File

@@ -1,3 +1,7 @@
2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/console.c: Include rtems/bspIo.h instead of bspIo.h.
2001-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove RTEMS_ENABLE_NETWORKING.

View File

@@ -77,7 +77,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <bsp.h> /* Must be before libio.h */
#include <bspIo.h>
#include <rtems/bspIo.h>
#include <rtems/libio.h>
#include <termios.h>
#include <bsp/mbx.h>