diff options
author | Aamir Bohra <aamir.bohra@intel.com> | 2019-12-16 17:49:13 +0530 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-19 17:49:13 +0000 |
commit | 53490444f72605f53c81e3bdbf479d1013a2d617 (patch) | |
tree | fc31ed5d18c0adbd2de775ad641f6d411db824c8 /src | |
parent | 1e83e5c61a3aa98f58f7d8cbf8d1eb9532896cc3 (diff) | |
download | coreboot-53490444f72605f53c81e3bdbf479d1013a2d617.tar.xz |
soc/intel/tigerlake: Add required header files in pch.c
Add header files to fix build issues due to missing declaration
for get_pch_series and die_with_post_code functions.
Change-Id: Ie8ba4970ec1b73c1e481f54bcfbf95be87d9c442
Signed-off-by: Aamir Bohra <aamir.bohra@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37765
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Maulik V Vaghela <maulik.v.vaghela@intel.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/tigerlake/bootblock/pch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/tigerlake/bootblock/pch.c b/src/soc/intel/tigerlake/bootblock/pch.c index 8599423f91..7a93182661 100644 --- a/src/soc/intel/tigerlake/bootblock/pch.c +++ b/src/soc/intel/tigerlake/bootblock/pch.c @@ -19,6 +19,8 @@ * Chapter number: 2, 3, 4, 27, 28 */ +#include <console/console.h> +#include <console/post_codes.h> #include <device/mmio.h> #include <device/device.h> #include <device/pci_ops.h> @@ -30,6 +32,7 @@ #include <intelblocks/pmclib.h> #include <intelblocks/rtc.h> #include <soc/bootblock.h> +#include <soc/espi.h> #include <soc/iomap.h> #include <soc/p2sb.h> #include <soc/pch.h> |