IntelFrameworkModulePkg: Fix typos in comments

- stoping -> stopping
- Pointion -> Position
- Arrary -> Array
- reseting -> resetting
- excute -> execute
- isTRUE -> is TRUE
- connectted -> connected
- Retrive -> Retrieve
- dirvers -> drivers
- funciton -> function
- paramter -> parameter
- availible -> available
- permenent -> permanent
- boundry -> boundary

Cc: Jeff Fan <jeff.fan@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <glin@suse.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
Gary Lin
2016-10-19 15:01:15 +08:00
committed by Jeff Fan
parent 3e14edf820
commit 70d3fe9dad
31 changed files with 137 additions and 137 deletions

View File

@@ -739,7 +739,7 @@ BootMaintCallback (
Private = BMM_CALLBACK_DATA_FROM_THIS (This);
//
// Retrive uncommitted data from Form Browser
// Retrieve uncommitted data from Form Browser
//
CurrentFakeNVMap = &Private->BmmFakeNvData;
HiiGetBrowserData (&gBootMaintFormSetGuid, mBootMaintStorageName, sizeof (BMM_FAKE_NV_DATA), (UINT8 *) CurrentFakeNVMap);

View File

@@ -370,7 +370,7 @@ FileExplorerRouteConfig (
@retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
@retval EFI_DEVICE_ERROR The variable could not be saved.
@retval EFI_UNSUPPORTED The specified Action is not supported by the callback.
@retval EFI_INVALID_PARAMETER If paramter Value or ActionRequest is NULL.
@retval EFI_INVALID_PARAMETER If parameter Value or ActionRequest is NULL.
**/
EFI_STATUS
EFIAPI

View File

@@ -714,7 +714,7 @@ ErrorExit:
Starts the device controller.
This function implments EFI_DRIVER_BINDING_PROTOCOL.Stop().
It stops this driver on Controller. Support stoping any child handles
It stops this driver on Controller. Support stopping any child handles
created by this driver.
@param This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.

View File

@@ -134,7 +134,7 @@ VgaClassDriverBindingStart (
Starts the device controller.
This function implments EFI_DRIVER_BINDING_PROTOCOL.Stop().
It stops this driver on Controller. Support stoping any child handles
It stops this driver on Controller. Support stopping any child handles
created by this driver.
@param This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.

View File

@@ -255,7 +255,7 @@ FindFilterDriverByEvent (
/**
Get a previously logged data record and the MonotonicCount for the next
availible Record. This allows all records or all records later
available Record. This allows all records or all records later
than a give MonotonicCount to be returned. If an optional FilterDriverEvent
is passed in with a MonotonicCout of zero return the first record
not yet read by the filter driver. If FilterDriverEvent is NULL and
@@ -264,7 +264,7 @@ FindFilterDriverByEvent (
@param This Pointer to the EFI_DATA_HUB_PROTOCOL instance.
@param MonotonicCount Specifies the Record to return. On input, zero means
return the first record. On output, contains the next
record to availible. Zero indicates no more records.
record to available. Zero indicates no more records.
@param FilterDriverEvent If FilterDriverEvent is not passed in a MonotonicCount
of zero, it means to return the first data record.
If FilterDriverEvent is passed in, then a MonotonicCount

View File

@@ -56,7 +56,7 @@ DataHubStdErrEventHandler (
//
// If StdErr is not yet initialized just return a DEBUG print in the BDS
// after consoles are connect will make sure data gets flushed properly
// when StdErr is availible.
// when StdErr is available.
//
if (gST == NULL) {
return ;

View File

@@ -529,7 +529,7 @@ FvCheck (
continue;
}
//
// double check boundry
// double check boundary
//
if (TestLength < sizeof (EFI_FFS_FILE_HEADER)) {
break;
@@ -570,7 +570,7 @@ FvCheck (
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &((EFI_FFS_FILE_HEADER *) Ptr)->Name));
Ptr = Ptr + FFS_FILE2_SIZE (Ptr);
//
// Adjust Ptr to the next 8-byte aligned boundry.
// Adjust Ptr to the next 8-byte aligned boundary.
//
while (((UINTN) Ptr & 0x07) != 0) {
Ptr++;
@@ -609,7 +609,7 @@ FvCheck (
}
//
// Adjust Ptr to the next 8-byte aligned boundry.
// Adjust Ptr to the next 8-byte aligned boundary.
//
while (((UINTN) Ptr & 0x07) != 0) {
Ptr++;

View File

@@ -782,7 +782,7 @@ FvCreateNewFile (
//
// First find a free space that can hold this image.
// Check alignment, FFS at least must be aligned at 8-byte boundry
// Check alignment, FFS at least must be aligned at 8-byte boundary
//
RequiredAlignment = GetRequiredAlignment (FileAttributes);
@@ -1513,7 +1513,7 @@ FvWriteFile (
for (Index1 = 0; Index1 < NumberOfFiles; Index1++) {
//
// Making Buffersize QWORD boundry, and add file tail.
// Making Buffersize QWORD boundary, and add file tail.
//
HeaderSize = sizeof (EFI_FFS_FILE_HEADER);
ActualSize = FileData[Index1].BufferSize + HeaderSize;