From 71dd2ef76fe5d4410da47191ba56bf1b16f1984e Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Mon, 9 Nov 2020 11:40:14 +0100 Subject: [PATCH] include/grub/arm64/linux.h: Include missing header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This header uses types defined in but does not include it, which leads to compile errors like the following: ../include/grub/cpu/linux.h:27:3: error: unknown type name ‘grub_uint32_t’ 27 | grub_uint32_t code0; /* Executable code */ | ^~~~~~~~~~~~~ Signed-off-by: Javier Martinez Canillas Reviewed-by: Daniel Kiper --- include/grub/arm64/linux.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/grub/arm64/linux.h b/include/grub/arm64/linux.h index 4269adc6d..7e22b4ab6 100644 --- a/include/grub/arm64/linux.h +++ b/include/grub/arm64/linux.h @@ -19,6 +19,8 @@ #ifndef GRUB_ARM64_LINUX_HEADER #define GRUB_ARM64_LINUX_HEADER 1 +#include + #define GRUB_LINUX_ARM64_MAGIC_SIGNATURE 0x644d5241 /* 'ARM\x64' */ /* From linux/Documentation/arm64/booting.txt */