diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 21:55:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 2d2fa31b377444991e7993c37f6d6900c6051aca (patch) | |
tree | 0d37e45165d29fe4aae15d17f5d19bcf795ea51d /vgasrc/vgabios.c | |
parent | 9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff) | |
download | seabios-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.gz |
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 'vgasrc/vgabios.c')
-rw-r--r-- | vgasrc/vgabios.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/vgasrc/vgabios.c b/vgasrc/vgabios.c index 12cd782f..5206da92 100644 --- a/vgasrc/vgabios.c +++ b/vgasrc/vgabios.c @@ -5,19 +5,20 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "bregs.h" // struct bregs #include "biosvar.h" // GET_BDA -#include "util.h" // dprintf -#include "vgabios.h" // calc_page_size -#include "optionroms.h" // struct pci_data -#include "config.h" // CONFIG_* -#include "stdvga.h" // stdvga_set_cursor_shape +#include "bregs.h" // struct bregs #include "clext.h" // clext_1012 -#include "vgahw.h" // vgahw_set_mode -#include "vbe.h" // VBE_RETURN_STATUS_FAILED +#include "config.h" // CONFIG_* #include "hw/pci.h" // pci_config_readw #include "hw/pci_regs.h" // PCI_VENDOR_ID +#include "optionroms.h" // struct pci_data +#include "output.h" // dprintf +#include "stdvga.h" // stdvga_set_cursor_shape #include "string.h" // memset_far +#include "util.h" // VERSION +#include "vbe.h" // VBE_RETURN_STATUS_FAILED +#include "vgabios.h" // calc_page_size +#include "vgahw.h" // vgahw_set_mode // Standard Video Save Pointer Table struct VideoSavePointer_s { |