summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Csm
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2016-10-19 15:01:15 +0800
committerJeff Fan <jeff.fan@intel.com>2016-10-24 09:09:06 +0800
commit70d3fe9dad1d7b2944a2653b3895a11863fb674e (patch)
tree5f3110023173e722b5d97b9765a70d931d76606e /IntelFrameworkModulePkg/Csm
parent3e14edf82031845233f3825ac9239609c0ee98fc (diff)
downloadedk2-70d3fe9dad1d7b2944a2653b3895a11863fb674e.zip
edk2-70d3fe9dad1d7b2944a2653b3895a11863fb674e.tar.gz
edk2-70d3fe9dad1d7b2944a2653b3895a11863fb674e.tar.bz2
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')
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c12
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.h2
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.c14
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.h62
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/Misc.c2
-rw-r--r--IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/PxeUndi.c46
-rw-r--r--IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c2
-rw-r--r--IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h4
-rw-r--r--IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyPci.c4
9 files changed, 74 insertions, 74 deletions
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c
index 8c7019f..8dcb131 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c
@@ -934,7 +934,7 @@ KeyboardReadKeyStrokeWorker (
}
//
- // Use TimerEvent callback funciton to check whether there's any key pressed
+ // Use TimerEvent callback function to check whether there's any key pressed
//
//
@@ -978,7 +978,7 @@ KeyboardReadKeyStrokeWorker (
@param ExtendedVerification Whether perform the extra validation of keyboard. True: perform; FALSE: skip.
@retval EFI_SUCCESS The command byte is written successfully.
- @retval EFI_DEVICE_ERROR Errors occurred during reseting keyboard.
+ @retval EFI_DEVICE_ERROR Errors occurred during resetting keyboard.
**/
EFI_STATUS
@@ -1176,8 +1176,8 @@ BiosKeyboardReset (
);
//
- // For reseting keyboard is not mandatory before booting OS and sometimes keyboard responses very slow,
- // so we only do the real reseting for keyboard when user asks, and normally during booting an OS, it's skipped.
+ // For resetting keyboard is not mandatory before booting OS and sometimes keyboard responses very slow,
+ // so we only do the real resetting for keyboard when user asks, and normally during booting an OS, it's skipped.
// Call CheckKeyboardConnect() to check whether keyboard is connected, if it is not connected,
// Real reset will not do.
//
@@ -1431,7 +1431,7 @@ BiosKeyboardWaitForKey (
//
gBS->Stall (1000);
//
- // Use TimerEvent callback funciton to check whether there's any key pressed
+ // Use TimerEvent callback function to check whether there's any key pressed
//
BiosKeyboardTimerHandler (NULL, BIOS_KEYBOARD_DEV_FROM_THIS (Context));
@@ -1795,7 +1795,7 @@ BiosKeyboardTimerHandler (
// will be disabled after the thunk call finish, which means if user crazy input during int 9 being disabled, some keystrokes will be lost when
// KB device own hardware buffer overflows. And if the lost keystroke code is CTRL or ALT or SHIFT release code, these function key flags bit
// in BDA will not be updated. So the Int 16 will believe the CTRL or ALT or SHIFT is still pressed, and Int 16 will translate later scancode
- // to wrong ASCII code. We can increase the Thunk frequence to let Int 9 response in time, but this way will much hurt other dirvers
+ // to wrong ASCII code. We can increase the Thunk frequence to let Int 9 response in time, but this way will much hurt other drivers
// performance, like USB.
//
// 1. If CTRL or ALT release code is missed, all later input keys will be translated to wrong ASCII codes which the Tiano cannot support. In
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.h b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.h
index a27d2e1..e836086 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.h
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.h
@@ -447,7 +447,7 @@ BiosKeyboardComponentNameGetControllerName (
@param ExtendedVerification Whether perform the extra validation of keyboard. True: perform; FALSE: skip.
@retval EFI_SUCCESS The command byte is written successfully.
- @retval EFI_DEVICE_ERROR Errors occurred during reseting keyboard.
+ @retval EFI_DEVICE_ERROR Errors occurred during resetting keyboard.
**/
EFI_STATUS
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.c b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.c
index 7af2ded..a2a7797 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.c
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.c
@@ -2148,7 +2148,7 @@ Undi16SimpleNetworkInitialize (
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
@param ExtendedVerification Need extended verfication.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -2229,7 +2229,7 @@ Undi16SimpleNetworkReset (
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -2342,7 +2342,7 @@ Undi16SimpleNetworkShutdown (
@param MCastFilterCnt Count of mutli cast filter for different MAC address
@param MCastFilter Buffer for mustli cast filter for different MAC address.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -2496,10 +2496,10 @@ Undi16SimpleNetworkReceiveFilters (
Set new MAC address.
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
- @param Reset Whether reset station MAC address to permenent address
+ @param Reset Whether reset station MAC address to permanent address
@param New A pointer to New address
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -2554,7 +2554,7 @@ Undi16SimpleNetworkStationAddress (
if (Reset) {
//
- // If we are reseting the Station Address to the permanent address, and the
+ // If we are resetting the Station Address to the permanent address, and the
// Station Address is not programmable, then just return EFI_SUCCESS.
//
if (!SimpleNetworkDevice->SimpleNetworkMode.MacAddressChangeable) {
@@ -2853,7 +2853,7 @@ Undi16SimpleNetworkStatistics (
@param IP A pointer to given Ip address.
@param MAC On return, translated MAC address.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_INVALID_PARAMETER Invalid IP address.
@retval EFI_INVALID_PARAMETER Invalid return buffer for holding MAC address.
@retval EFI_UNSUPPORTED Do not support IPv6
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.h b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.h
index b29059f..447783c 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.h
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/BiosSnp16.h
@@ -236,7 +236,7 @@ Undi16SimpleNetworkInitialize (
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
@param ExtendedVerification Need extended verfication.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -255,7 +255,7 @@ Undi16SimpleNetworkReset (
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -278,7 +278,7 @@ Undi16SimpleNetworkShutdown (
@param MCastFilterCnt Count of mutli cast filter for different MAC address
@param MCastFilter Buffer for mustli cast filter for different MAC address.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -300,10 +300,10 @@ Undi16SimpleNetworkReceiveFilters (
Set new MAC address.
@param This A pointer to EFI_SIMPLE_NETWORK_PROTOCOL structure.
- @param Reset Whether reset station MAC address to permenent address
+ @param Reset Whether reset station MAC address to permanent address
@param New A pointer to New address
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -326,7 +326,7 @@ Undi16SimpleNetworkStationAddress (
@param StatisticsSize The buffer of statistics table.
@param StatisticsTable A pointer to statistics buffer.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_DEVICE_ERROR Network device has not been initialized.
@retval EFI_NOT_STARTED Network device has been stopped.
@retval EFI_DEVICE_ERROR Invalid status for network device
@@ -350,7 +350,7 @@ Undi16SimpleNetworkStatistics (
@param IP A pointer to given Ip address.
@param MAC On return, translated MAC address.
- @retval EFI_INVALID_PARAMETER Invalid This paramter.
+ @retval EFI_INVALID_PARAMETER Invalid This parameter.
@retval EFI_INVALID_PARAMETER Invalid IP address.
@retval EFI_INVALID_PARAMETER Invalid return buffer for holding MAC address.
@retval EFI_UNSUPPORTED Do not support IPv6
@@ -639,7 +639,7 @@ LaunchBaseCode (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -680,7 +680,7 @@ PxeStartUndi (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -713,7 +713,7 @@ PxeUndiStartup (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -759,7 +759,7 @@ PxeUndiCleanup (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance.
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -808,7 +808,7 @@ PxeUndiInitialize (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance.
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@param RxFilter Filter setting mask value for PXE recive .
@@ -843,7 +843,7 @@ PxeUndiResetNic (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -890,7 +890,7 @@ PxeUndiShutdown (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -921,7 +921,7 @@ PxeUndiOpen (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1007,7 +1007,7 @@ PxeUndiClose (
Status: See the PXENV_STATUS_xxx constants
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1041,7 +1041,7 @@ PxeUndiTransmit (
Status: See the PXENV_STATUS_xxx constants
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1076,7 +1076,7 @@ PxeUndiSetMcastAddr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1110,7 +1110,7 @@ PxeUndiSetStationAddr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1169,7 +1169,7 @@ PxeUndiSetPacketFilter (
TxBufCnt: Transmit queue length.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1210,7 +1210,7 @@ PxeUndiGetInformation (
because receive queue was full.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1240,7 +1240,7 @@ PxeUndiGetStatistics (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1271,7 +1271,7 @@ PxeUndiClearStatistics (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1308,7 +1308,7 @@ PxeUndiInitiateDiags (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1342,7 +1342,7 @@ PxeUndiForceInterrupt (
MediaAddr: MAC multicast address.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1408,7 +1408,7 @@ PxeUndiGetMcastAddr (
in the [PnP] and [PCI] specifications
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1457,7 +1457,7 @@ PxeUndiGetNicType (
Reserved: Must be zero.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1515,7 +1515,7 @@ PxeUndiGetNdisInfo (
strategy routine when the UNDI re-enables interrupts.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1550,7 +1550,7 @@ PxeUndiIsr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1598,7 +1598,7 @@ PxeUndiStop (
status of that operation on return.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1623,7 +1623,7 @@ PxeUndiGetState (
@param SimpleNetworkDevice Device instance for simple network
@param Table Point to parameter/retun value table for legacy far call
- @param TableSize The size of paramter/return value table
+ @param TableSize The size of parameter/return value table
@param CallIndex The index of legacy call.
@return EFI_STATUS
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/Misc.c b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/Misc.c
index 243048c..4750b2f 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/Misc.c
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/Misc.c
@@ -823,7 +823,7 @@ LaunchBaseCode (
@param SimpleNetworkDevice Device instance for simple network
@param Table Point to parameter/retun value table for legacy far call
- @param TableSize The size of paramter/return value table
+ @param TableSize The size of parameter/return value table
@param CallIndex The index of legacy call.
@return EFI_STATUS
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/PxeUndi.c b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/PxeUndi.c
index d35fc3f..7063229 100644
--- a/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/PxeUndi.c
+++ b/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/PxeUndi.c
@@ -57,7 +57,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -105,7 +105,7 @@ PxeStartUndi (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -145,7 +145,7 @@ PxeUndiStartup (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -198,7 +198,7 @@ PxeUndiCleanup (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -254,7 +254,7 @@ PxeUndiInitialize (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance.
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@param RxFilter Filter setting mask value for PXE recive .
@@ -347,7 +347,7 @@ PxeUndiResetNic (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -401,7 +401,7 @@ PxeUndiShutdown (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -439,7 +439,7 @@ PxeUndiOpen (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -532,7 +532,7 @@ PxeUndiClose (
Status: See the PXENV_STATUS_xxx constants
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -586,7 +586,7 @@ PxeUndiTransmit (
Status: See the PXENV_STATUS_xxx constants
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -628,7 +628,7 @@ PxeUndiSetMcastAddr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -669,7 +669,7 @@ PxeUndiSetStationAddr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -735,7 +735,7 @@ PxeUndiSetPacketFilter (
TxBufCnt: Transmit queue length.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -783,7 +783,7 @@ PxeUndiGetInformation (
because receive queue was full.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -820,7 +820,7 @@ PxeUndiGetStatistics (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -858,7 +858,7 @@ PxeUndiClearStatistics (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -902,7 +902,7 @@ PxeUndiInitiateDiags (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -943,7 +943,7 @@ PxeUndiForceInterrupt (
MediaAddr: MAC multicast address.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1016,7 +1016,7 @@ PxeUndiGetMcastAddr (
in the [PnP] and [PCI] specifications
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1072,7 +1072,7 @@ PxeUndiGetNicType (
Reserved: Must be zero.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1137,7 +1137,7 @@ PxeUndiGetNdisInfo (
strategy routine when the UNDI re-enables interrupts.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1179,7 +1179,7 @@ PxeUndiIsr (
Status: See the PXENV_STATUS_xxx constants.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
@@ -1234,7 +1234,7 @@ PxeUndiStop (
status of that operation on return.
@param SimpleNetworkDevice Device instance
- @param PxeUndiTable Point to structure which hold paramter and return value
+ @param PxeUndiTable Point to structure which hold parameter and return value
for option ROM call.
@return Return value of PXE option ROM far call.
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/IpfBootSupport.c
index 8c8f6d3..ee08c86 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 bbd074b..069646b 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 9d84ab0..8f91a7d 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.