efi_datatype: Add typedef for EFI_PHYSICAL_ADDRESS

Signed-off-by: Anil Kumar <anil.kumar.k@intel.com>
Change-Id: Ie09e337ee1790a06689681fca087edcfd89d215f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60778
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
This commit is contained in:
Anil Kumar 2022-01-04 15:03:03 -08:00 committed by Subrata Banik
parent cd1cd8d117
commit 8a4a89fdcb
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#define __EFI_DATATYPE_H__
#include <Base.h>
#include <PiPei.h>
#include <Uefi/UefiBaseType.h>
/* Basic Data types */
/* 8-byte unsigned value. */
@ -38,6 +39,8 @@ typedef EFI_STATUS efi_return_status_t;
/* Data structure */
/* Data structure for EFI_PEI_SERVICE. */
typedef EFI_PEI_SERVICES efi_pei_services;
/* Data structure for EFI_PHYSICAL_ADDRESS */
typedef EFI_PHYSICAL_ADDRESS efi_physical_address;
/* Structure that describes information about a logical CPU. */
typedef EFI_PROCESSOR_INFORMATION efi_processor_information;