diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-03-11 19:59:15 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-03-12 20:32:05 +0000 |
commit | 7d3df29ce759434928d69a534abc51c537f26f02 (patch) | |
tree | 722a626fe5f1d37ef1963760d0cdb84300535204 /src/soc/amd | |
parent | e77d939321e79ae04a1ebc8142b9d5949c6fd4d1 (diff) |
soc/amd/common/amdblocks/chip.h,psp.h: add missing stdint.h include
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I6fb53d88a840a782af7502660ff85205f84523b8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51416
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/chip.h | 1 | ||||
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/psp.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/chip.h b/src/soc/amd/common/block/include/amdblocks/chip.h index e18ce64265..b06ff85d11 100644 --- a/src/soc/amd/common/block/include/amdblocks/chip.h +++ b/src/soc/amd/common/block/include/amdblocks/chip.h @@ -5,6 +5,7 @@ #include <amdblocks/espi.h> #include <amdblocks/spi.h> +#include <stdint.h> struct soc_amd_common_config { /* diff --git a/src/soc/amd/common/block/include/amdblocks/psp.h b/src/soc/amd/common/block/include/amdblocks/psp.h index 8cd8236706..2aa000e554 100644 --- a/src/soc/amd/common/block/include/amdblocks/psp.h +++ b/src/soc/amd/common/block/include/amdblocks/psp.h @@ -3,6 +3,8 @@ #ifndef AMD_BLOCK_PSP_H #define AMD_BLOCK_PSP_H +#include <stdint.h> + /* Get the mailbox base address - specific to family of device. */ void *soc_get_mbox_address(void); |