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>
This commit is contained in:
Felix Held 2021-03-11 19:59:15 +01:00
parent e77d939321
commit 7d3df29ce7
2 changed files with 3 additions and 0 deletions

View file

@ -5,6 +5,7 @@
#include <amdblocks/espi.h>
#include <amdblocks/spi.h>
#include <stdint.h>
struct soc_amd_common_config {
/*

View file

@ -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);