summaryrefslogtreecommitdiff
path: root/src/post.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/post.c
parent9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff)
downloadqemu-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/post.c')
-rw-r--r--src/post.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/post.c b/src/post.c
index 701134f..e84dcae 100644
--- a/src/post.c
+++ b/src/post.c
@@ -5,29 +5,30 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "config.h" // CONFIG_*
-#include "hw/cmos.h" // CMOS_*
-#include "util.h" // dprintf
#include "biosvar.h" // struct bios_data_area_s
-#include "disk.h" // floppy_setup
-#include "hw/ata.h" // ata_setup
-#include "hw/ahci.h" // ahci_setup
-#include "memmap.h" // add_e820
-#include "hw/pic.h" // pic_setup
-#include "bregs.h" // struct bregs
#include "boot.h" // boot_init
-#include "hw/usb.h" // usb_setup
+#include "bregs.h" // struct bregs
+#include "config.h" // CONFIG_*
+#include "disk.h" // floppy_setup
#include "fw/paravirt.h" // qemu_cfg_preinit
#include "fw/xen.h" // xen_preinit
+#include "hw/ahci.h" // ahci_setup
+#include "hw/ata.h" // ata_setup
+#include "hw/cmos.h" // CMOS_*
+#include "hw/esp-scsi.h" // esp_scsi_setup
+#include "hw/lsi-scsi.h" // lsi_scsi_setup
+#include "hw/megasas.h" // megasas_setup
+#include "hw/pic.h" // pic_setup
#include "hw/ps2port.h" // ps2port_setup
+#include "hw/usb.h" // usb_setup
#include "hw/virtio-blk.h" // virtio_blk_setup
#include "hw/virtio-scsi.h" // virtio_scsi_setup
-#include "hw/lsi-scsi.h" // lsi_scsi_setup
-#include "hw/esp-scsi.h" // esp_scsi_setup
-#include "hw/megasas.h" // megasas_setup
#include "malloc.h" // malloc_init
+#include "memmap.h" // add_e820
+#include "output.h" // dprintf
#include "post.h" // interface_init
#include "string.h" // memset
+#include "util.h" // kbd_init
/****************************************************************