aboutsummaryrefslogtreecommitdiffstats
path: root/vgasrc/stdvgaio.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-18 21:41:48 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-28 22:10:31 -0400
commit4ade523a9db32b2a0e3cdeec3413c52e463542c8 (patch)
tree83da55d3236672934dc003765578d52e48b737bb /vgasrc/stdvgaio.c
parent7b9f29736aecd3ac35021a8fc24ee15fc01d2c5a (diff)
downloadseabios-4ade523a9db32b2a0e3cdeec3413c52e463542c8.tar.gz
Remove ioport.h; disperse its contents to other header files.
Move the inb(), insb(), etc. code from ioport.h to x86.h. Move the PORT_* definitions to their appropriate hardware files. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/stdvgaio.c')
-rw-r--r--vgasrc/stdvgaio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vgasrc/stdvgaio.c b/vgasrc/stdvgaio.c
index b370d1af..d6138c22 100644
--- a/vgasrc/stdvgaio.c
+++ b/vgasrc/stdvgaio.c
@@ -4,9 +4,9 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "stdvga.h" // stdvga_pelmask_read
#include "farptr.h" // GET_FARVAR
-#include "ioport.h" // inb
+#include "stdvga.h" // stdvga_pelmask_read
+#include "x86.h" // inb
u8
stdvga_pelmask_read(void)