[PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
Add host interface Protocol Type Data Format structure in SmBios.h
BZ link, https://bugzilla.tianocore.org/show_bug.cgi?id=2328 Signed-off-by: Abner Chang <abner.chang@...> Cc: Michael D Kinney <michael.d.kinney@...> Cc: Liming Gao <liming.gao@...> Signed-off-by: Abner Chang <abner.chang@...> --- MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index f504cc84e7..c0144c9c8f 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -2483,6 +2483,15 @@ typedef struct { UINT8 DevFuncNum; } SMBIOS_TABLE_TYPE41; +/// +/// Management Controller Host Interface - Protocol Record Data Format. +/// +typedef struct { + UINT8 ProtocolType; + UINT8 ProtocolTypeDataLen; + UINT8 ProtocolTypeData[1]; +} MC_HOST_INTERFACE_PROTOCOL_RECORD; + /// /// Management Controller Host Interface - Interface Types. /// 00h - 3Fh: MCTP Host Interfaces -- 2.21.0.windows.1 |
|