diff options
author | INDIA\sachinganesh <sachinganesh@ami.com> | 2025-02-21 17:43:41 +0530 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-03-31 07:49:33 +0000 |
commit | 5d3314d0bf78b87da654f034585d721074d1563e (patch) | |
tree | 800d4d5c04b7be2202613c04740e75113f6c756b | |
parent | 3907f8a0bab35c90a0d4ee0352a6fdec04b35bd2 (diff) | |
download | edk2-5d3314d0bf78b87da654f034585d721074d1563e.zip edk2-5d3314d0bf78b87da654f034585d721074d1563e.tar.gz edk2-5d3314d0bf78b87da654f034585d721074d1563e.tar.bz2 |
MdeModulePkg/Core: Add Hot Pluggable type to Attribute Conversion Table
Hot Pluggable resource attribute was introduced in UEFI 2.11 and PI 1.9
specifications.
This type should have an entry in the Attribute Conversion Table.
Signed-off-by: Sachin Ganesh <sachinganesh@ami.com>
-rw-r--r-- | MdeModulePkg/Core/Dxe/Gcd/Gcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdeModulePkg/Core/Dxe/Gcd/Gcd.c b/MdeModulePkg/Core/Dxe/Gcd/Gcd.c index 602bb36..df0765b 100644 --- a/MdeModulePkg/Core/Dxe/Gcd/Gcd.c +++ b/MdeModulePkg/Core/Dxe/Gcd/Gcd.c @@ -94,6 +94,7 @@ GCD_ATTRIBUTE_CONVERSION_ENTRY mAttributeConversionTable[] = { { EFI_RESOURCE_ATTRIBUTE_PERSISTABLE, EFI_MEMORY_NV, TRUE },
{ EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE, EFI_MEMORY_MORE_RELIABLE, TRUE },
{ EFI_RESOURCE_ATTRIBUTE_SPECIAL_PURPOSE, EFI_MEMORY_SP, TRUE },
+ { EFI_RESOURCE_ATTRIBUTE_HOT_PLUGGABLE, EFI_MEMORY_HOT_PLUGGABLE, TRUE },
{ 0, 0, FALSE }
};
|