diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-02-10 16:41:11 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-11 16:45:04 +0000 |
commit | ea120f96c9f0d8ca750d55dbd911e04c694dd736 (patch) | |
tree | 647446033facf0fff338d8244c9100f95fcf7e8b /src/soc/amd | |
parent | ffdf1f950309876b013824c152f0dfc8b6dccb2a (diff) |
soc/amd/common: Fix missing header in amd_pci_utils.h
This was causing a build error because size_t wasn't defined.
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Ia467c7d6cc0f71580d0b323cb560c444d53bd7f7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50508
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/amd_pci_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h index 46fcfbfdf1..a14aecff51 100644 --- a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h +++ b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h @@ -3,7 +3,7 @@ #ifndef AMD_BLOCK_PCI_UTIL_H #define AMD_BLOCK_PCI_UTIL_H -#include <stdint.h> +#include <types.h> #include <soc/amd_pci_int_defs.h> /* FCH index/data registers */ |