aboutsummaryrefslogtreecommitdiffstats
path: root/src/fw/csm.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/csm.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/csm.c')
-rw-r--r--src/fw/csm.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/fw/csm.c b/src/fw/csm.c
index 9e73a40e..7a926b1c 100644
--- a/src/fw/csm.c
+++ b/src/fw/csm.c
@@ -4,21 +4,22 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
+#include "acpi.h"
+#include "biosvar.h"
+#include "boot.h"
+#include "bregs.h"
#include "config.h" // CONFIG_*
#include "csm.h"
-#include "util.h" // dprintf
-#include "bregs.h"
-#include "optionroms.h"
#include "hw/pci.h"
+#include "hw/pic.h"
+#include "malloc.h" // csm_malloc_preinit
#include "memmap.h"
-#include "biosvar.h"
+#include "optionroms.h"
+#include "output.h" // dprintf
#include "post.h"
-#include "acpi.h"
-#include "boot.h"
#include "smbios.h"
-#include "hw/pic.h"
-#include "malloc.h" // csm_malloc_preinit
#include "stacks.h" // wait_threads
+#include "util.h" // copy_smbios
struct rsdp_descriptor csm_rsdp VARFSEG __aligned(16);