diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2023-10-05 19:48:47 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-10-25 13:14:09 +0000 |
commit | 00dbde5fa4e21d9c7cacf01cf119f06860fcfb11 (patch) | |
tree | 79e7c86b012b1e5fb42b14e7ed5e7ce340364625 | |
parent | 1f21e11168dd6a071a92e41ecdffc7cd6e5f3f02 (diff) | |
download | edk2-00dbde5fa4e21d9c7cacf01cf119f06860fcfb11.tar.gz edk2-00dbde5fa4e21d9c7cacf01cf119f06860fcfb11.tar.bz2 edk2-00dbde5fa4e21d9c7cacf01cf119f06860fcfb11.zip |
MdePkg/Mctp.h: Correct typo in structure member name
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>
-rw-r--r-- | MdePkg/Include/IndustryStandard/Mctp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/IndustryStandard/Mctp.h b/MdePkg/Include/IndustryStandard/Mctp.h index 5e603b9cf6..1c86cc627e 100644 --- a/MdePkg/Include/IndustryStandard/Mctp.h +++ b/MdePkg/Include/IndustryStandard/Mctp.h @@ -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
|