Skip to content

Commit

Permalink
MdePkg/Mctp.h: Correct typo in structure member name
Browse files Browse the repository at this point in the history
Correct MCTP_TRANSPORT_HEADER structure field 'SourceEndpointIdId' to
'SourceEndpointId'.

Signed-off-by: Abner Chang <abner.chang@amd.com>
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
  • Loading branch information
Kostr authored and mergify[bot] committed Oct 25, 2023
1 parent 1f21e11 commit 00dbde5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MdePkg/Include/IndustryStandard/Mctp.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ typedef union {
UINT32 HeaderVersion : 4; ///< The version of header.
UINT32 Reserved : 4; ///< Reserved for future definitions.
UINT32 DestinationEndpointId : 8; ///< Destination endpoint Id (EID).
UINT32 SourceEndpointIdId : 8; ///< Source endpoint Id (EID)
UINT32 SourceEndpointId : 8; ///< Source endpoint Id (EID)
UINT32 MessageTag : 3; ///< Check the MCTP Base specification for the
///< usages.
UINT32 TagOwner : 1; ///< Tag owner identifies the message was
Expand Down

0 comments on commit 00dbde5

Please sign in to comment.