HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50565 )
Change subject: console/vtxprintf.c: Add missing <types.h> ......................................................................
console/vtxprintf.c: Add missing <types.h>
Change-Id: Icc2b99f9125e9059dbf3de42a1b5ca9727888166 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/console/vtxprintf.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/50565/1
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index c7bb585..2a51430 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -7,7 +7,7 @@ #include <console/vtxprintf.h> #include <ctype.h> #include <string.h> -#include <stdint.h> +#include <types.h>
#define call_tx(x) tx_byte(x, data)