From 2d2fa31b377444991e7993c37f6d6900c6051aca Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 14 Sep 2013 21:55:26 -0400 Subject: 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 --- src/optionroms.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/optionroms.c') diff --git a/src/optionroms.c b/src/optionroms.c index 560df816..b38e44e3 100644 --- a/src/optionroms.c +++ b/src/optionroms.c @@ -5,19 +5,20 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. +#include "boot.h" // IPL #include "bregs.h" // struct bregs -#include "farptr.h" // FLATPTR_TO_SEG #include "config.h" // CONFIG_* -#include "util.h" // dprintf +#include "farptr.h" // FLATPTR_TO_SEG #include "hw/pci.h" // foreachpci -#include "hw/pci_regs.h" // PCI_ROM_ADDRESS #include "hw/pci_ids.h" // PCI_CLASS_DISPLAY_VGA -#include "boot.h" // IPL +#include "hw/pci_regs.h" // PCI_ROM_ADDRESS #include "malloc.h" // rom_confirm #include "optionroms.h" // struct rom_header +#include "output.h" // dprintf #include "romfile.h" // romfile_loadint #include "stacks.h" // farcall16big #include "string.h" // memset +#include "util.h" // get_pnp_offset /**************************************************************** -- cgit