aboutsummaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-09-13 09:27:54 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-09-16 18:39:03 +0000
commitaa1b67de295b25b02a02c33ed27d1b52efc22d57 (patch)
tree17d2785b96479df1be50eddd6ee6268cedea1227 /src/soc
parent4969b4d9558f5cd2696c45c6480bc25fcc7972ae (diff)
soc/amd/common/block/pi: Add missing include stdbool.h
BUG=b:179699789 TEST=build morphius Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I298ce1ee436a5c8eb8375dc5fe55665bbf977463 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57619 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/amd/common/block/pi/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/pi/image.c b/src/soc/amd/common/block/pi/image.c
index c237235994..3c90d7cb46 100644
--- a/src/soc/amd/common/block/pi/image.c
+++ b/src/soc/amd/common/block/pi/image.c
@@ -2,6 +2,7 @@
#include <agesa_headers.h>
#include <amdblocks/image.h>
+#include <stdbool.h>
/* Check if the image has the desired module. */
static bool validate_image(void *module_chain, const char module_signature[8])