summaryrefslogtreecommitdiffstats
path: root/src/lib/hardwaremain.c
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-10-01 19:53:39 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-10-04 15:58:10 +0000
commitf10776781d9449f1948147af4b06719461ba768d (patch)
tree9a83462ef8259b7c85083433abd1f04cd46001fe /src/lib/hardwaremain.c
parentae9a84478fd061e5fc888e405c011b064521201a (diff)
downloadcoreboot-f10776781d9449f1948147af4b06719461ba768d.tar.gz
coreboot-f10776781d9449f1948147af4b06719461ba768d.tar.bz2
coreboot-f10776781d9449f1948147af4b06719461ba768d.zip
lib/hardwaremain: add missing types.h include
The u8 type is used in the file, but neither stdint.h not types.h was included in the file. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ifd67aff9eba01f9618004c869f1473217b3aeae4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58075 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/lib/hardwaremain.c')
-rw-r--r--src/lib/hardwaremain.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c
index 2f782e733743..cb459038b10f 100644
--- a/src/lib/hardwaremain.c
+++ b/src/lib/hardwaremain.c
@@ -23,6 +23,7 @@
#include <thread.h>
#include <timer.h>
#include <timestamp.h>
+#include <types.h>
#include <vendorcode/google/chromeos/gnvs.h>
#include <version.h>