Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63010 )
Change subject: include/efi: Add correct header file for EFI_PROCESSOR_INFORMATION ......................................................................
include/efi: Add correct header file for EFI_PROCESSOR_INFORMATION
This patch resolves compilation issue of including `efi_datatype.h` in other stage files due to unresolved EFI_PROCESSOR_INFORMATION macro definition. EFI_PROCESSOR_INFORMATION defined in `Protocol/MpService.h` hence, included to resolve compilation issue.
TEST=Able to build brya.
Signed-off-by: Subrata Banik subratabanik@google.com Change-Id: I4c0ca4f8876e46f1748ffc9e3b90de00ead80ebd --- M src/include/efi/efi_datatype.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/10/63010/1
diff --git a/src/include/efi/efi_datatype.h b/src/include/efi/efi_datatype.h index 7eefad3..5415ae8 100644 --- a/src/include/efi/efi_datatype.h +++ b/src/include/efi/efi_datatype.h @@ -8,6 +8,7 @@
#if CONFIG_UDK_VERSION >= CONFIG_UDK_2017_VERSION #include <Pi/PiPeiCis.h> +#include <Protocol/MpService.h>
/* Data structure for EFI_PEI_SERVICE. */ typedef EFI_PEI_SERVICES efi_pei_services;