summaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-01-14 19:07:48 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-01-18 10:53:08 +0000
commitb4cac8f763fd118ae98ef375bcb30bce6b9fd7c5 (patch)
tree6d783ca3d75989b19b60a4661b8bab9d28ddc753 /src/console
parent088f3d7988f2ae1e90afd070cd6d9562eb526823 (diff)
downloadcoreboot-b4cac8f763fd118ae98ef375bcb30bce6b9fd7c5.tar.xz
console/post: NOPOST means NOPOST
Not "NOPOST except when the board says something else". Change-Id: I3608e9c3a7d2338363a4320c8718b20ef25a038a Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38408 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/console')
-rw-r--r--src/console/post.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/post.c b/src/console/post.c
index 33d85e7675..6265770b37 100644
--- a/src/console/post.c
+++ b/src/console/post.c
@@ -32,6 +32,7 @@ void post_code(uint8_t value)
if (CONFIG(CONSOLE_POST))
printk(BIOS_EMERG, "POST: 0x%02x\n", value);
+
+ mainboard_post(value);
}
- mainboard_post(value);
}