diff options
author | Chris Jones <christopher.jones@arm.com> | 2021-12-08 16:06:24 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-10 20:06:52 +0000 |
commit | 30631f0a269bf3ef86f251982d4d86fa3d26c44b (patch) | |
tree | 2374d6f071dbcafa3172811bd23efd732c7af848 /MdePkg | |
parent | 0f1d7477c0a86a31e2edede7d3a3c74087bb6e21 (diff) | |
download | edk2-30631f0a269bf3ef86f251982d4d86fa3d26c44b.tar.gz edk2-30631f0a269bf3ef86f251982d4d86fa3d26c44b.tar.bz2 edk2-30631f0a269bf3ef86f251982d4d86fa3d26c44b.zip |
MdePkg: Add missing Cache ID (in)valid define
Bugzilla: 3697 (https://bugzilla.tianocore.org/show_bug.cgi?id=3697)
Add Cache ID valid/invalid defines to Acpi64.h which were not initially
added when the CacheIdValid field was added to
EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE_FLAGS.
Signed-off-by: Chris Jones <christopher.jones@arm.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi64.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h index 9cdd35b563..ff3cb441c2 100644 --- a/MdePkg/Include/IndustryStandard/Acpi64.h +++ b/MdePkg/Include/IndustryStandard/Acpi64.h @@ -2680,6 +2680,8 @@ typedef struct { #define EFI_ACPI_6_4_PPTT_WRITE_POLICY_VALID 0x1
#define EFI_ACPI_6_4_PPTT_LINE_SIZE_INVALID 0x0
#define EFI_ACPI_6_4_PPTT_LINE_SIZE_VALID 0x1
+#define EFI_ACPI_6_4_PPTT_CACHE_ID_INVALID 0x0
+#define EFI_ACPI_6_4_PPTT_CACHE_ID_VALID 0x1
///
/// Cache Type Structure flags
|