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>
This commit is contained in:
Rebecca Cran 2024-07-30 10:00:54 -06:00 committed by mergify[bot]
parent 1f6dbab8d9
commit 669c5aa240
5 changed files with 7 additions and 7 deletions

View File

@ -132,7 +132,7 @@ EFI_PEI_PPI_DESCRIPTOR gPpiLoadFilePpiList = {
Install Pei Load File PPI. Install Pei Load File PPI.
@param FileHandle Handle of the file being invoked. @param FileHandle Handle of the file being invoked.
@param PeiServices Describes the list of possible PEI Services. @param PeiServices Describes the list of possible PEI Services.
@retval EFI_SUCESS The entry point executes successfully. @retval EFI_SUCCESS The entry point executes successfully.
@retval Others Some error occurs during the execution of this function. @retval Others Some error occurs during the execution of this function.
**/ **/
EFI_STATUS EFI_STATUS

View File

@ -173,7 +173,7 @@ EFI_PEI_PPI_DESCRIPTOR gPpiLoadFilePpiList = {
@param FileHandle Handle of the file being invoked. @param FileHandle Handle of the file being invoked.
@param PeiServices Describes the list of possible PEI Services. @param PeiServices Describes the list of possible PEI Services.
@retval EFI_SUCESS The entry point executes successfully. @retval EFI_SUCCESS The entry point executes successfully.
@retval Others Some error occurs during the execution of this function. @retval Others Some error occurs during the execution of this function.
**/ **/

View File

@ -25,7 +25,7 @@ LIST_ENTRY mSmmSwDispatch2Queue = INITIALIZE_LIST_HEAD_VARIABLE (mSmm
/** /**
Find SmmSwDispatch2Context by SwSmiInputValue. Find SmmSwDispatch2Context by SwSmiInputValue.
@param[in] SwSmiInputValue The value to indentify the SmmSwDispatch2 context @param[in] SwSmiInputValue The value to identify the SmmSwDispatch2 context
@return Pointer to EFI_SMM_SW_DISPATCH2_CONTEXT context @return Pointer to EFI_SMM_SW_DISPATCH2_CONTEXT context
**/ **/
@ -51,7 +51,7 @@ FindContextBySwSmiInputValue (
/** /**
Find SmmSwDispatch2Context by DispatchHandle. Find SmmSwDispatch2Context by DispatchHandle.
@param DispatchHandle The handle to indentify the SmmSwDispatch2 context @param DispatchHandle The handle to identify the SmmSwDispatch2 context
@return Pointer to EFI_SMM_SW_DISPATCH2_CONTEXT context @return Pointer to EFI_SMM_SW_DISPATCH2_CONTEXT context
**/ **/
@ -178,7 +178,7 @@ End:
/** /**
Check the SwSmiInputValue is already used Check the SwSmiInputValue is already used
@param[in] SwSmiInputValue To indentify the SmmSwDispatch2 context @param[in] SwSmiInputValue To identify the SmmSwDispatch2 context
@retval EFI_SUCCESS SwSmiInputValue could be used. @retval EFI_SUCCESS SwSmiInputValue could be used.
@retval EFI_INVALID_PARAMETER SwSmiInputValue is already be used. @retval EFI_INVALID_PARAMETER SwSmiInputValue is already be used.

View File

@ -13,7 +13,7 @@
Find the board related info from ACPI table Find the board related info from ACPI table
@param AcpiTableBase ACPI table start address in memory @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_SUCCESS Successfully find out all the required information.
@retval RETURN_NOT_FOUND Failed to find the required info. @retval RETURN_NOT_FOUND Failed to find the required info.

View File

@ -39,7 +39,7 @@ AllocatePages (
return NULL; return NULL;
} }
// Make sure allocation address is page alligned. // Make sure allocation address is page aligned.
Offset = HobTable->EfiFreeMemoryTop & EFI_PAGE_MASK; Offset = HobTable->EfiFreeMemoryTop & EFI_PAGE_MASK;
if (Offset != 0) { if (Offset != 0) {
HobTable->EfiFreeMemoryTop -= Offset; HobTable->EfiFreeMemoryTop -= Offset;