Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58075 )
Change subject: lib/hardwaremain: add missing types.h include ......................................................................
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 --- M src/lib/hardwaremain.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/58075/1
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index 2f782e7..cb45903 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>