diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2024-07-30 10:00:54 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-08-01 19:53:47 +0000 |
commit | 669c5aa240f6675c93a275dd45a1b8fccd351519 (patch) | |
tree | de02afb6766573e84c8cd7698f87fe88020db0a5 /UefiPayloadPkg/UefiPayloadEntry | |
parent | 1f6dbab8d9d3b364cf873a5a04531ee4c2cbd637 (diff) | |
download | edk2-669c5aa240f6675c93a275dd45a1b8fccd351519.tar.gz edk2-669c5aa240f6675c93a275dd45a1b8fccd351519.tar.bz2 edk2-669c5aa240f6675c93a275dd45a1b8fccd351519.zip |
UefiPayloadPkg: Fix some spelling mistakes found by cspell
When cspell is installed (via `npm install cspell`), CI checks for
spelling mistakes. There are currently a very large number of them: some
are genuine mistakes while others are words or acryonyms that cspell
doesn't know.
Fix a few of the misspellings in UefiPayloadPkg.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Diffstat (limited to 'UefiPayloadPkg/UefiPayloadEntry')
-rw-r--r-- | UefiPayloadPkg/UefiPayloadEntry/AcpiTable.c | 2 | ||||
-rw-r--r-- | UefiPayloadPkg/UefiPayloadEntry/MemoryAllocation.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/UefiPayloadPkg/UefiPayloadEntry/AcpiTable.c b/UefiPayloadPkg/UefiPayloadEntry/AcpiTable.c index 748728981a..24ee43aeec 100644 --- a/UefiPayloadPkg/UefiPayloadEntry/AcpiTable.c +++ b/UefiPayloadPkg/UefiPayloadEntry/AcpiTable.c @@ -13,7 +13,7 @@ Find the board related info from ACPI table
@param AcpiTableBase ACPI table start address in memory
- @param AcpiBoardInfo Pointer to the acpi board info strucutre
+ @param AcpiBoardInfo Pointer to the acpi board info structure
@retval RETURN_SUCCESS Successfully find out all the required information.
@retval RETURN_NOT_FOUND Failed to find the required info.
diff --git a/UefiPayloadPkg/UefiPayloadEntry/MemoryAllocation.c b/UefiPayloadPkg/UefiPayloadEntry/MemoryAllocation.c index 83936ae26e..9a65b7dbfe 100644 --- a/UefiPayloadPkg/UefiPayloadEntry/MemoryAllocation.c +++ b/UefiPayloadPkg/UefiPayloadEntry/MemoryAllocation.c @@ -39,7 +39,7 @@ AllocatePages ( return NULL;
}
- // Make sure allocation address is page alligned.
+ // Make sure allocation address is page aligned.
Offset = HobTable->EfiFreeMemoryTop & EFI_PAGE_MASK;
if (Offset != 0) {
HobTable->EfiFreeMemoryTop -= Offset;
|