aboutsummaryrefslogtreecommitdiff
path: root/src/vgahooks.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-14 21:55:26 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-18 20:48:34 -0400
commit2d2fa31b377444991e7993c37f6d6900c6051aca (patch)
tree0d37e45165d29fe4aae15d17f5d19bcf795ea51d /src/vgahooks.c
parent9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff)
downloadseabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.zip
seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.gz
seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.bz2
Move function definitions for output.c from util.h to new file output.h.
Also, sort the order of include files in the c files. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/vgahooks.c')
-rw-r--r--src/vgahooks.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/vgahooks.c b/src/vgahooks.c
index 9917014..dc3085e 100644
--- a/src/vgahooks.c
+++ b/src/vgahooks.c
@@ -4,14 +4,15 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "bregs.h" // set_code_invalid
#include "biosvar.h" // GET_GLOBAL
+#include "bregs.h" // set_code_invalid
+#include "config.h" // CONFIG_*
#include "hw/pci.h" // pci_find_device
-#include "hw/pci_regs.h" // PCI_VENDOR_ID
#include "hw/pci_ids.h" // PCI_VENDOR_ID_VIA
-#include "util.h" // handle_155f
-#include "config.h" // CONFIG_*
+#include "hw/pci_regs.h" // PCI_VENDOR_ID
+#include "output.h" // dprintf
#include "string.h" // strcmp
+#include "util.h" // handle_155f
#define VH_VIA 1
#define VH_INTEL 2