diff options
author | Vishal Oliyil Kunnil <vishalo@qti.qualcomm.com> | 2025-09-02 17:36:00 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-09-03 08:06:24 +0000 |
commit | fcbf985673c3efd17e849d731d156995fdf33bad (patch) | |
tree | fb83575e162e8277aedf10e670f8d54ee36b387c | |
parent | f718b0ffd625d23266af881c51abe09c05d5a708 (diff) | |
download | edk2-fcbf985673c3efd17e849d731d156995fdf33bad.zip edk2-fcbf985673c3efd17e849d731d156995fdf33bad.tar.gz edk2-fcbf985673c3efd17e849d731d156995fdf33bad.tar.bz2 |
MdePkg/ArmFfaMemMgmtLib: Fix typo in structure definition and comments
Fix typo in FFA_ENDPOINT_MEMORY_ACCESS_DESCRIPTOR member and comments.
Signed-off-by: Vishal Oliyil Kunnil <vishalo@qti.qualcomm.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/ArmFfaMemMgmt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Include/IndustryStandard/ArmFfaMemMgmt.h b/MdePkg/Include/IndustryStandard/ArmFfaMemMgmt.h index 4f9d7c1..979bf16 100644 --- a/MdePkg/Include/IndustryStandard/ArmFfaMemMgmt.h +++ b/MdePkg/Include/IndustryStandard/ArmFfaMemMgmt.h @@ -1,5 +1,5 @@ /** @file
- Memory management protocol definitions as specfied in the FF-A Memory Management
+ Memory management protocol definitions as specified in the FF-A Memory Management
v1.3 APL1 specification.
Copyright 2021 The Hafnium Authors.
@@ -30,7 +30,7 @@ #define FFA_DATA_ACCESS_RESERVED 3
/**
- Intruction access attributes in a memory access permission descriptor.
+ Instruction access attributes in a memory access permission descriptor.
This corresponds to table 1.15 of the FF-A Memory Management v1.3 APL1, "Memory
access permissions descriptor", bits[3:2].
@@ -210,7 +210,7 @@ typedef struct { an `FFA_COMPOSITE_MEMORY_REGION` struct.
**/
UINT32 CompositeMemoryRegionOffset;
- UINT8 ImpementationDefined[16];
+ UINT8 ImplementationDefined[16];
UINT64 Reserved;
} FFA_ENDPOINT_MEMORY_ACCESS_DESCRIPTOR;
|