summaryrefslogtreecommitdiff
path: root/src/console/post.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/post.c')
-rw-r--r--src/console/post.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/console/post.c b/src/console/post.c
index 4f2a87c93e..df71a62d90 100644
--- a/src/console/post.c
+++ b/src/console/post.c
@@ -150,9 +150,7 @@ void post_code(uint8_t value)
{
#if !CONFIG_NO_POST
#if CONFIG_CONSOLE_POST
- print_emerg("POST: 0x");
- print_emerg_hex8(value);
- print_emerg("\n");
+ printk(BIOS_EMERG, "POST: 0x%02x\n", value);
#endif
#if CONFIG_CMOS_POST
cmos_post_code(value);