aboutsummaryrefslogtreecommitdiffstats
path: root/src/fw/smbios.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/fw/smbios.c
parent9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff)
downloadseabios-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/smbios.c')
-rw-r--r--src/fw/smbios.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fw/smbios.c b/src/fw/smbios.c
index beb31439..a8969dae 100644
--- a/src/fw/smbios.c
+++ b/src/fw/smbios.c
@@ -5,13 +5,14 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "util.h" // dprintf
#include "config.h" // CONFIG_*
-#include "paravirt.h" // RamSize
-#include "smbios.h" // struct smbios_entry_point
#include "malloc.h" // free
+#include "output.h" // dprintf
+#include "paravirt.h" // RamSize
#include "romfile.h" // romfile_findprefix
+#include "smbios.h" // struct smbios_entry_point
#include "string.h" // memset
+#include "util.h" // MaxCountCPUs
#include "x86.h" // cpuid
struct smbios_entry_point *SMBiosAddr;