southbridge/intel/common: Replace outb with post_code in finalize.c

The outb() call is replaced with the post_code()

The post_codes.h is replaced with console.h since console.h
includes both the post_code definition and post_codes.h

Change-Id: I21345260e86de30614c416e2f509bd77b9e00cb7
Signed-off-by: Sindhoor Tilak <sindhoor@sin9yt.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43596
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Sindhoor Tilak 2020-07-19 12:36:47 +00:00 committed by Patrick Georgi
parent c25c1ebd9e
commit 6217a15674
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/io.h>
#include <console/post_codes.h>
#include <console/console.h>
#include <device/pci_ops.h>
#include <southbridge/intel/common/pmbase.h>
#include <southbridge/intel/common/pmutil.h>
@ -48,5 +48,5 @@ void intel_pch_finalize_smm(void)
write_pmbase16(TCO1_CNT, read_pmbase16(TCO1_CNT) | TCO_LOCK);
outb(POST_OS_BOOT, CONFIG_POST_IO_PORT);
post_code(POST_OS_BOOT);
}