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>
This commit is contained in:
Patrick Georgi 2020-01-14 19:07:48 +01:00
parent 088f3d7988
commit b4cac8f763
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}