mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-22 21:24:35 +02:00
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:
parent
1f6dbab8d9
commit
669c5aa240
@ -132,7 +132,7 @@ EFI_PEI_PPI_DESCRIPTOR gPpiLoadFilePpiList = {
|
||||
Install Pei Load File PPI.
|
||||
@param FileHandle Handle of the file being invoked.
|
||||
@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.
|
||||
**/
|
||||
EFI_STATUS
|
||||
|
@ -173,7 +173,7 @@ EFI_PEI_PPI_DESCRIPTOR gPpiLoadFilePpiList = {
|
||||
@param FileHandle Handle of the file being invoked.
|
||||
@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.
|
||||
|
||||
**/
|
||||
|
@ -25,7 +25,7 @@ LIST_ENTRY mSmmSwDispatch2Queue = INITIALIZE_LIST_HEAD_VARIABLE (mSmm
|
||||
/**
|
||||
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
|
||||
**/
|
||||
@ -51,7 +51,7 @@ FindContextBySwSmiInputValue (
|
||||
/**
|
||||
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
|
||||
**/
|
||||
@ -178,7 +178,7 @@ End:
|
||||
/**
|
||||
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_INVALID_PARAMETER SwSmiInputValue is already be used.
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user