diff options
author | Felix Held <felix.held@amd.corp-partner.google.com> | 2021-10-01 19:53:39 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-10-04 15:58:10 +0000 |
commit | f10776781d9449f1948147af4b06719461ba768d (patch) | |
tree | 9a83462ef8259b7c85083433abd1f04cd46001fe /src | |
parent | ae9a84478fd061e5fc888e405c011b064521201a (diff) |
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')
-rw-r--r-- | src/lib/hardwaremain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index 2f782e7337..cb459038b1 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> |