diff options
author | Gary Lin <glin@suse.com> | 2016-10-19 15:01:15 +0800 |
---|---|---|
committer | Jeff Fan <jeff.fan@intel.com> | 2016-10-24 09:09:06 +0800 |
commit | 70d3fe9dad1d7b2944a2653b3895a11863fb674e (patch) | |
tree | 5f3110023173e722b5d97b9765a70d931d76606e /IntelFrameworkModulePkg/Csm/LegacyBiosDxe | |
parent | 3e14edf82031845233f3825ac9239609c0ee98fc (diff) | |
download | edk2-platforms-70d3fe9dad1d7b2944a2653b3895a11863fb674e.tar.xz |
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>
Diffstat (limited to 'IntelFrameworkModulePkg/Csm/LegacyBiosDxe')
3 files changed, 5 insertions, 5 deletions
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c index 8c8f6d321b..ee08c86c70 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c @@ -223,7 +223,7 @@ RelocateImageUnder4GIfNeeded ( }
ImageContext.ImageAddress = (PHYSICAL_ADDRESS)MemoryAddress;
//
- // Align buffer on section boundry
+ // Align buffer on section boundary
//
ImageContext.ImageAddress += ImageContext.SectionAlignment - 1;
ImageContext.ImageAddress &= ~((PHYSICAL_ADDRESS)ImageContext.SectionAlignment - 1);
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h index bbd074b56c..069646b518 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h @@ -826,7 +826,7 @@ LegacyBiosFarCall86 ( @param RomSize Size of ROM Image
@param Flags Indicates if ROM found and if PC-AT.
- @retval EFI_SUCCESS Legacy Option ROM availible for this device
+ @retval EFI_SUCCESS Legacy Option ROM available for this device
@retval EFI_UNSUPPORTED Legacy Option ROM not supported.
**/
@@ -1463,7 +1463,7 @@ LegacyCalculateWriteStandardCmosChecksum ( @param[out] OpromRevision Revision of the PCI Rom
@param[out] ConfigUtilityCodeHeaderPointer of Configuration Utility Code Header
- @return EFI_SUCCESS Legacy Option ROM availible for this device
+ @return EFI_SUCCESS Legacy Option ROM available for this device
@return EFI_ALREADY_STARTED This device is already managed by its Oprom
@return EFI_UNSUPPORTED Legacy Option ROM not supported.
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyPci.c b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyPci.c index 9d84ab0000..8f91a7d7a9 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyPci.c +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyPci.c @@ -1812,7 +1812,7 @@ PciShadowRoms ( @param RomSize Size of ROM Image
@param Flags Indicates if ROM found and if PC-AT.
- @retval EFI_SUCCESS Legacy Option ROM availible for this device
+ @retval EFI_SUCCESS Legacy Option ROM available for this device
@retval EFI_UNSUPPORTED Legacy Option ROM not supported.
**/
@@ -1854,7 +1854,7 @@ LegacyBiosCheckPciRom ( @param[out] OpromRevision Revision of the PCI Rom
@param[out] ConfigUtilityCodeHeaderPointer of Configuration Utility Code Header
- @return EFI_SUCCESS Legacy Option ROM availible for this device
+ @return EFI_SUCCESS Legacy Option ROM available for this device
@return EFI_ALREADY_STARTED This device is already managed by its Oprom
@return EFI_UNSUPPORTED Legacy Option ROM not supported.
|