summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-02-10 16:41:11 -0700
committerFelix Held <felix-coreboot@felixheld.de>2021-02-11 16:45:04 +0000
commitea120f96c9f0d8ca750d55dbd911e04c694dd736 (patch)
tree647446033facf0fff338d8244c9100f95fcf7e8b /src
parentffdf1f950309876b013824c152f0dfc8b6dccb2a (diff)
downloadcoreboot-ea120f96c9f0d8ca750d55dbd911e04c694dd736.tar.gz
coreboot-ea120f96c9f0d8ca750d55dbd911e04c694dd736.tar.bz2
coreboot-ea120f96c9f0d8ca750d55dbd911e04c694dd736.zip
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')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/amd_pci_util.h2
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 46fcfbfdf169..a14aecff51f5 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 */