From bb1fcb4507095d47f504fab344e589f67e87854b Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 15 Jan 2014 13:52:14 -0500 Subject: debug: Unify the SeaBIOS debug version banner. Introduce debug_banner() and use it in all the places SeaBIOS version is displayed for debugging purposes. Signed-off-by: Kevin O'Connor --- src/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/post.c') diff --git a/src/post.c b/src/post.c index ec3271e3..b5cbdb82 100644 --- a/src/post.c +++ b/src/post.c @@ -319,7 +319,7 @@ handle_post(void) return; serial_debug_preinit(); - dprintf(1, "Start bios (version %s)\n", VERSION); + debug_banner(); // Check if we are running under Xen. xen_preinit(); -- cgit