Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/51416 )
Change subject: soc/amd/common/amdblocks/chip.h,psp.h: add missing stdint.h include ......................................................................
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 --- M src/soc/amd/common/block/include/amdblocks/chip.h M src/soc/amd/common/block/include/amdblocks/psp.h 2 files changed, 3 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved
diff --git a/src/soc/amd/common/block/include/amdblocks/chip.h b/src/soc/amd/common/block/include/amdblocks/chip.h index e18ce64..b06ff85 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 8cd8236..2aa000e 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);