summaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
Diffstat (limited to 'src/console')
-rw-r--r--src/console/post.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/console/post.c b/src/console/post.c
index 1d99a2e9dd..35e87799a8 100644
--- a/src/console/post.c
+++ b/src/console/post.c
@@ -5,6 +5,7 @@
/* Write POST information */
void __weak arch_post_code(uint8_t value) { }
+void __weak soc_post_code(uint8_t value) { }
/* Some mainboards have very nice features beyond just a simple display.
* They can override this function.
@@ -18,6 +19,8 @@ void post_code(uint8_t value)
for displaying POST so keep it first. */
arch_post_code(value);
+ soc_post_code(value);
+
if (CONFIG(CONSOLE_POST))
printk(BIOS_INFO, "POST: 0x%02x\n", value);