summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2008-10-12 01:52:30 +0200
committerMichael Brown2008-10-12 02:06:27 +0200
commitee2df1d6d6a83dbe0972835d4f9adfb46a121ef5 (patch)
treee13f3cade309302922cf0e95411b1ce1c70fa837 /src/core
parent[ioapi] Formalise the I/O API as used in i386-pcbios (diff)
downloadipxe-ee2df1d6d6a83dbe0972835d4f9adfb46a121ef5.tar.gz
ipxe-ee2df1d6d6a83dbe0972835d4f9adfb46a121ef5.tar.xz
ipxe-ee2df1d6d6a83dbe0972835d4f9adfb46a121ef5.zip
[ioapi] Remove old io.h file and switch all users over to <gpxe/io.h>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/debug.c2
-rw-r--r--src/core/malloc.c2
-rw-r--r--src/core/pc_kbd.c2
-rw-r--r--src/core/serial.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/core/debug.c b/src/core/debug.c
index 09830420..3079cd4c 100644
--- a/src/core/debug.c
+++ b/src/core/debug.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdint.h>
#include <stdarg.h>
-#include <io.h>
+#include <gpxe/io.h>
#include <console.h>
void pause ( void ) {
diff --git a/src/core/malloc.c b/src/core/malloc.c
index 2d892f42..db7f1bed 100644
--- a/src/core/malloc.c
+++ b/src/core/malloc.c
@@ -20,7 +20,7 @@
#include <stdint.h>
#include <string.h>
#include <strings.h>
-#include <io.h>
+#include <gpxe/io.h>
#include <gpxe/list.h>
#include <gpxe/init.h>
#include <gpxe/malloc.h>
diff --git a/src/core/pc_kbd.c b/src/core/pc_kbd.c
index d43357fe..799c8beb 100644
--- a/src/core/pc_kbd.c
+++ b/src/core/pc_kbd.c
@@ -10,7 +10,7 @@
* yhlu@tyan.com
*/
-#include "io.h"
+#include <gpxe/io.h>
#include "console.h"
static char key_map[][128] = {
diff --git a/src/core/serial.c b/src/core/serial.c
index 97640f93..5b3be39c 100644
--- a/src/core/serial.c
+++ b/src/core/serial.c
@@ -13,7 +13,7 @@
#include "stddef.h"
#include <gpxe/init.h>
-#include "io.h"
+#include <gpxe/io.h>
#include <unistd.h>
#include <gpxe/serial.h>
#include "config/serial.h"