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 /src/fw/coreboot.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 'src/fw/coreboot.c')
-rw-r--r-- | src/fw/coreboot.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/fw/coreboot.c b/src/fw/coreboot.c index 9971f824..c82dd4e8 100644 --- a/src/fw/coreboot.c +++ b/src/fw/coreboot.c @@ -4,21 +4,22 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "memmap.h" // add_e820 -#include "util.h" // dprintf -#include "byteorder.h" // be32_to_cpu -#include "lzmadecode.h" // LzmaDecode -#include "smbios.h" // smbios_init +#include "acpi.h" // find_acpi_features #include "boot.h" // boot_add_cbfs -#include "disk.h" // MAXDESCSIZE +#include "byteorder.h" // be32_to_cpu #include "config.h" // CONFIG_* -#include "acpi.h" // find_acpi_features +#include "disk.h" // MAXDESCSIZE #include "hw/pci.h" // pci_probe_devices +#include "lzmadecode.h" // LzmaDecode #include "malloc.h" // free +#include "memmap.h" // add_e820 +#include "output.h" // dprintf #include "paravirt.h" // PlatformRunningOn #include "romfile.h" // romfile_findprefix +#include "smbios.h" // smbios_init #include "stacks.h" // yield #include "string.h" // memset +#include "util.h" // coreboot_preinit /**************************************************************** |