Joel Kitching has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40326 )
Change subject: libpayload/cbfs_core: add arch/types.h include ......................................................................
libpayload/cbfs_core: add arch/types.h include
cbfs_core.h uses u32, so it should include arch/types.h.
BUG=chromium:1070071 TEST=make clean && make test-abuild BRANCH=none
Change-Id: Ibcfbb8dbd20570292dcc06ccb73cf8a7cfe15d8d Signed-off-by: Joel Kitching kitching@google.com --- M payloads/libpayload/include/cbfs_core.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/40326/1
diff --git a/payloads/libpayload/include/cbfs_core.h b/payloads/libpayload/include/cbfs_core.h index ad1e9e2..f03eaf6 100644 --- a/payloads/libpayload/include/cbfs_core.h +++ b/payloads/libpayload/include/cbfs_core.h @@ -46,6 +46,7 @@ #ifndef _CBFS_CORE_H_ #define _CBFS_CORE_H_
+#include <arch/types.h> #include <endian.h> #include <stddef.h> #include <stdint.h>