diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-03-29 17:45:28 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-04-23 10:00:39 +0000 |
commit | 20eaef024cb06677de10d018e6f70c28d1841290 (patch) | |
tree | 9e3c264553fa807dd1347b5427f863e4b241949e /src/soc/amd/stoneyridge | |
parent | 7118701e96c46e641cb4527e34fa48b77d105c43 (diff) |
src: Add missing include 'console.h'
Change-Id: Ie21c390ab04adb5b05d5f9760d227d2a175ccb56
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32122
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/soc/amd/stoneyridge')
-rw-r--r-- | src/soc/amd/stoneyridge/BiosCallOuts.c | 5 | ||||
-rw-r--r-- | src/soc/amd/stoneyridge/ramtop.c | 1 | ||||
-rw-r--r-- | src/soc/amd/stoneyridge/smbus_spd.c | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/soc/amd/stoneyridge/BiosCallOuts.c b/src/soc/amd/stoneyridge/BiosCallOuts.c index 1027ae0294..c55e73499a 100644 --- a/src/soc/amd/stoneyridge/BiosCallOuts.c +++ b/src/soc/amd/stoneyridge/BiosCallOuts.c @@ -18,15 +18,16 @@ #include <device/device.h> #include <device/pci_def.h> #include <amdblocks/BiosCallOuts.h> +#include <console/console.h> #include <soc/southbridge.h> #include <soc/pci_devs.h> #include <stdlib.h> - #include <amdblocks/agesawrapper.h> #include <amdblocks/dimm_spd.h> -#include "chip.h" #include <amdblocks/car.h> +#include "chip.h" + void __weak platform_FchParams_reset(FCH_RESET_DATA_BLOCK *FchParams_reset) {} AGESA_STATUS agesa_fch_initreset(uint32_t Func, uintptr_t FchData, diff --git a/src/soc/amd/stoneyridge/ramtop.c b/src/soc/amd/stoneyridge/ramtop.c index edd5c2394e..f43fcf37ec 100644 --- a/src/soc/amd/stoneyridge/ramtop.c +++ b/src/soc/amd/stoneyridge/ramtop.c @@ -17,6 +17,7 @@ #include <assert.h> #include <stdint.h> +#include <console/console.h> #include <cpu/x86/msr.h> #include <cpu/amd/msr.h> #include <cpu/amd/mtrr.h> diff --git a/src/soc/amd/stoneyridge/smbus_spd.c b/src/soc/amd/stoneyridge/smbus_spd.c index 63b457c2c8..ed73a6e51b 100644 --- a/src/soc/amd/stoneyridge/smbus_spd.c +++ b/src/soc/amd/stoneyridge/smbus_spd.c @@ -14,6 +14,7 @@ */ #include <amdblocks/agesawrapper.h> +#include <console/console.h> #include <device/pci_def.h> #include <device/device.h> #include <soc/southbridge.h> |