Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40916 )
Change subject: soc/amd/picasso/include/soc/romstage: Add missing include ......................................................................
soc/amd/picasso/include/soc/romstage: Add missing include
We use `int` in this file.
BUG=b:147042464 TEST=Trembyle still builds
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: I207b0f4820627fc7cfd7c4927b84048a115f4fb6 --- M src/soc/amd/picasso/include/soc/romstage.h 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/16/40916/1
diff --git a/src/soc/amd/picasso/include/soc/romstage.h b/src/soc/amd/picasso/include/soc/romstage.h index 5d21d08..9edbb063 100644 --- a/src/soc/amd/picasso/include/soc/romstage.h +++ b/src/soc/amd/picasso/include/soc/romstage.h @@ -4,6 +4,8 @@ #ifndef __PICASSO_ROMSTAGE_H__ #define __PICASSO_ROMSTAGE_H__
+#include <stdint.h> + void mainboard_romstage_entry_s3(int s3_resume);
#endif /* __PICASSO_ROMSTAGE_H__ */