bsp/pc386: Use public include path

Update #3254.
This commit is contained in:
Chris Johns
2018-01-04 08:39:40 +01:00
committed by Sebastian Huber
parent 3eed4f30e4
commit 1efd148be1
6 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@
#include <libchip/serial.h>
#include <libchip/ns16550.h>
#if BSP_ENABLE_VGA
#include "vgacons.h"
#include <rtems/vgacons.h>
#endif
#include <bsp/irq.h>
#include "../../../shared/console_private.h"

View File

@@ -28,7 +28,7 @@
#include <libchip/serial.h>
#include <rtems/mouse_parser.h>
#if BSP_ENABLE_VGA
#include "keyboard.h"
#include <rtems/keyboard.h>
#endif
#include "../../../shared/console_private.h"

View File

@@ -29,8 +29,8 @@
#define INITIALIZE_MOUSE
/* Some configuration switches are present in the include file... */
#include <rtems/ps2_drv.h>
#include "ps2_mouse.h"
#include "ps2_drv.h"
static void kbd_write_command_w(int data);
#if 0

View File

@@ -14,7 +14,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include "libchip/serial.h"
#include <libchip/serial.h>
#include "../../../shared/console_private.h"
/* select which serial port the mouse is connected to */

View File

@@ -21,7 +21,7 @@
#include <bsp.h>
#include <crt.h>
#include <assert.h>
#include "keyboard.h"
#include <rtems/keyboard.h>
#define VGACONS_STATIC static

View File

@@ -29,7 +29,7 @@
#include <termios.h>
#include <uart.h>
#include <libcpu/cpuModel.h>
#include "tty_drv.h"
#include <bsp/tty_drv.h>
int BSP_poll_read(int);