diff options
author | Chris Jones <christopher.jones@arm.com> | 2021-12-08 16:06:25 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-10 20:06:52 +0000 |
commit | 0077c22f6d4beee944dc8dd91d7ae8595638ef7a (patch) | |
tree | bca49daa26d732a032a9179517d42a52cacc26ed /MdePkg/Include/IndustryStandard/Acpi64.h | |
parent | 30631f0a269bf3ef86f251982d4d86fa3d26c44b (diff) | |
download | edk2-0077c22f6d4beee944dc8dd91d7ae8595638ef7a.tar.gz edk2-0077c22f6d4beee944dc8dd91d7ae8595638ef7a.tar.bz2 edk2-0077c22f6d4beee944dc8dd91d7ae8595638ef7a.zip |
MdePkg: Remove PPTT ID type structure
Bugzilla: 3697 (https://bugzilla.tianocore.org/show_bug.cgi?id=3697)
The ACPI 6.3A specification deprecated the PPTT ID type structure (type
2) therefore remove it from Acpi64.h.
Mantis ID: 2072 (https://mantis.uefi.org/mantis/view.php?id=2072)
Signed-off-by: Chris Jones <christopher.jones@arm.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'MdePkg/Include/IndustryStandard/Acpi64.h')
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi64.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h index ff3cb441c2..a79b7f2eaa 100644 --- a/MdePkg/Include/IndustryStandard/Acpi64.h +++ b/MdePkg/Include/IndustryStandard/Acpi64.h @@ -2613,7 +2613,6 @@ typedef struct { ///
#define EFI_ACPI_6_4_PPTT_TYPE_PROCESSOR 0x00
#define EFI_ACPI_6_4_PPTT_TYPE_CACHE 0x01
-#define EFI_ACPI_6_4_PPTT_TYPE_ID 0x02
///
/// PPTT Structure Header
@@ -2738,21 +2737,6 @@ typedef struct { } EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE;
///
-/// ID structure
-///
-typedef struct {
- UINT8 Type;
- UINT8 Length;
- UINT8 Reserved[2];
- UINT32 VendorId;
- UINT64 Level1Id;
- UINT64 Level2Id;
- UINT16 MajorRev;
- UINT16 MinorRev;
- UINT16 SpinRev;
-} EFI_ACPI_6_4_PPTT_STRUCTURE_ID;
-
-///
/// Platform Health Assessment Table (PHAT) Format
///
typedef struct {
|