diff options
author | Anil Kumar <anil.kumar.k@intel.com> | 2022-01-04 15:03:03 -0800 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-01-20 04:54:32 +0000 |
commit | 8a4a89fdcb58655de09e4a2688c8f4d912bacc6c (patch) | |
tree | 4a8bb4aaeffb5065a9ebc2f68c8a18df864f9736 /src | |
parent | cd1cd8d1176cf65f189f0346679c3f4e4fe9af92 (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/efi/efi_datatype.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/efi/efi_datatype.h b/src/include/efi/efi_datatype.h index 8766183d7a..be96e3fd3a 100644 --- a/src/include/efi/efi_datatype.h +++ b/src/include/efi/efi_datatype.h @@ -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; |