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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63010
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
Subrata Banik 2022-03-23 03:42:22 +05:30 committed by Felix Held
parent ab20543075
commit 2f4fe94331
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#if CONFIG_UDK_VERSION >= CONFIG_UDK_2017_VERSION #if CONFIG_UDK_VERSION >= CONFIG_UDK_2017_VERSION
#include <Pi/PiPeiCis.h> #include <Pi/PiPeiCis.h>
#include <Protocol/MpService.h>
/* Data structure for EFI_PEI_SERVICE. */ /* Data structure for EFI_PEI_SERVICE. */
typedef EFI_PEI_SERVICES efi_pei_services; typedef EFI_PEI_SERVICES efi_pei_services;