From 67ead55b35e16a5de5f4695eb61cb484465e0009 Mon Sep 17 00:00:00 2001 From: Matthew Carlson Date: Fri, 7 Feb 2020 16:37:25 +0800 Subject: [PATCH] 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 Cc: Liming Gao Signed-off-by: Zhichao Gao Reviewed-by: Liming Gao --- MdePkg/Include/IndustryStandard/SmBios.h | 5 +++++ 1 file changed, 5 insertions(+) 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; ///