aboutsummaryrefslogtreecommitdiff
path: root/src/bootsplash.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/bootsplash.c
parent9dea59025f8aa3742ff5b27d1772e1651066ffb9 (diff)
downloadseabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.zip
seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.gz
seabios-hppa-2d2fa31b377444991e7993c37f6d6900c6051aca.tar.bz2
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/bootsplash.c')
-rw-r--r--src/bootsplash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/bootsplash.c b/src/bootsplash.c
index 1bea722..b7b3eb8 100644
--- a/src/bootsplash.c
+++ b/src/bootsplash.c
@@ -5,18 +5,19 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
+#include "bmp.h" // bmp_alloc
#include "bregs.h" // struct bregs
-#include "farptr.h" // FLATPTR_TO_SEG
#include "config.h" // CONFIG_*
-#include "util.h" // dprintf
-#include "jpeg.h" // splash
-#include "vbe.h" // struct vbe_info
-#include "bmp.h" // bmp_alloc
+#include "farptr.h" // FLATPTR_TO_SEG
#include "fw/smbios.h" // display_uuid
+#include "jpeg.h" // jpeg_alloc
#include "malloc.h" // free
+#include "output.h" // dprintf
#include "romfile.h" // romfile_loadfile
#include "stacks.h" // call16_int
#include "string.h" // memset
+#include "util.h" // enable_bootsplash
+#include "vbe.h" // struct vbe_info
/****************************************************************