Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69901 )
Change subject: sb/intel/i82801gx/lpc.c: Use post_code() ......................................................................
sb/intel/i82801gx/lpc.c: Use post_code()
Use post_code() instead of 'outb(value, CONFIG_POST_IO_PORT)'.
Change-Id: I1ba6bff810b61a1249cda6e96eb40f4a81381322 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/southbridge/intel/i82801gx/lpc.c 1 file changed, 13 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/69901/1
diff --git a/src/southbridge/intel/i82801gx/lpc.c b/src/southbridge/intel/i82801gx/lpc.c index 05156f7..37095e84 100644 --- a/src/southbridge/intel/i82801gx/lpc.c +++ b/src/southbridge/intel/i82801gx/lpc.c @@ -446,7 +446,7 @@ write_pmbase16(PMBASE_TCO_OFFSET + TCO1_CNT, tco1_cnt);
/* Indicate finalize step with post code */ - outb(POST_OS_BOOT, 0x80); + post_code(POST_OS_BOOT); }
static const char *lpc_acpi_name(const struct device *dev)