summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/Library/PeilessStartupLib
diff options
context:
space:
mode:
authorPierre Gondois <pierre.gondois@arm.com>2022-08-23 18:00:22 +0200
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-09-05 13:52:51 +0000
commite87ac5ef4976d97867ded8db55d177a986912df8 (patch)
tree94641fabfb5238de5ab4380b1f8e09369ec4dd6a /OvmfPkg/Library/PeilessStartupLib
parent0ccf9556740a236e2984487f0d09878aa389cb10 (diff)
downloadedk2-e87ac5ef4976d97867ded8db55d177a986912df8.tar.gz
edk2-e87ac5ef4976d97867ded8db55d177a986912df8.tar.bz2
edk2-e87ac5ef4976d97867ded8db55d177a986912df8.zip
OvmfPkg: Remove duplicated words
In an effort to clean the documentation of the above package, remove duplicated words. Signed-off-by: Pierre Gondois <pierre.gondois@arm.com> Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>
Diffstat (limited to 'OvmfPkg/Library/PeilessStartupLib')
-rw-r--r--OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c b/OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c
index 8da06da74e..6877e521e4 100644
--- a/OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c
+++ b/OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c
@@ -813,7 +813,7 @@ CreateIdentityMappingPageTables (
{
//
// Each PML5 entry points to a page of PML4 entires.
- // So lets allocate space for them and fill them in in the IndexOfPml4Entries loop.
+ // So lets allocate space for them and fill them in the IndexOfPml4Entries loop.
// When 5-Level Paging is disabled, below allocation happens only once.
//
PageMapLevel4Entry = (VOID *)BigPageAddress;
@@ -835,7 +835,7 @@ CreateIdentityMappingPageTables (
{
//
// Each PML4 entry points to a page of Page Directory Pointer entires.
- // So lets allocate space for them and fill them in in the IndexOfPdpEntries loop.
+ // So lets allocate space for them and fill them in the IndexOfPdpEntries loop.
//
PageDirectoryPointerEntry = (VOID *)BigPageAddress;
BigPageAddress += SIZE_4KB;
@@ -875,7 +875,7 @@ CreateIdentityMappingPageTables (
{
//
// Each Directory Pointer entries points to a page of Page Directory entires.
- // So allocate space for them and fill them in in the IndexOfPageDirectoryEntries loop.
+ // So allocate space for them and fill them in the IndexOfPageDirectoryEntries loop.
//
PageDirectoryEntry = (VOID *)BigPageAddress;
BigPageAddress += SIZE_4KB;