diff options
author | Jason Zhao <jason.zhao@intel.com> | 2024-08-27 13:33:42 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-03 14:19:55 +0000 |
commit | 7f505d377b44aeee59f34b3d898f6caf0a0df538 (patch) | |
tree | 5ed4f24c073cc96276ea9283e7a56b4ad69f5280 | |
parent | 72cf76868ce7b7cda1ba5f9eb28693557ff10256 (diff) | |
download | edk2-7f505d377b44aeee59f34b3d898f6caf0a0df538.tar.gz edk2-7f505d377b44aeee59f34b3d898f6caf0a0df538.tar.bz2 edk2-7f505d377b44aeee59f34b3d898f6caf0a0df538.zip |
MdePkg/SmBios.h: Add new Socket Type for SMBIOS Type4
The patch adds new socket type(Type 4, Offset 32h) for
SMBIOS Type4 based on SMBIOS v3.8.0.
Signed-off-by: Jason Zhao <jason.zhao@intel.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index c07cfcb814..9d0dec2575 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1020,6 +1020,10 @@ typedef struct { // Add for smbios 3.6
//
UINT16 ThreadEnabled;
+ //
+ // Add for smbios 3.8
+ //
+ SMBIOS_TABLE_STRING SocketType;
} SMBIOS_TABLE_TYPE4;
///
|