diff options
author | Matthew Carlson <macarl@microsoft.com> | 2020-02-07 16:37:25 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-11 05:53:48 +0000 |
commit | 67ead55b35e16a5de5f4695eb61cb484465e0009 (patch) | |
tree | 3f0b5cd2f80362d560b0dd7d39ac1617ba0ac269 | |
parent | 348a34d984d5265ae91a6a56f0ccbc613210238d (diff) | |
download | edk2-67ead55b35e16a5de5f4695eb61cb484465e0009.tar.gz edk2-67ead55b35e16a5de5f4695eb61cb484465e0009.tar.bz2 edk2-67ead55b35e16a5de5f4695eb61cb484465e0009.zip |
MdePkg/SmBios.h: Add two additional DWORD for smbios 3.3.0 type17
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2482
Refer to DSP0134_3.3.0.pdf, there are two additional DWORD added
for type 17. One is "Extended Speed", the other is "Extended
Configured Memory Speed". The lack of these field may cause strange
error in some operating systems.
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Zhichao Gao <zhichao.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 8b3c4d7ba9..def874be28 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1843,6 +1843,11 @@ typedef struct { UINT64 VolatileSize;
UINT64 CacheSize;
UINT64 LogicalSize;
+ //
+ // Add for smbios 3.3.0
+ //
+ UINT32 ExtendedSpeed;
+ UINT32 ExtendedConfiguredMemorySpeed;
} SMBIOS_TABLE_TYPE17;
///
|