summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Library/PiDxeS3BootScriptLib
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@nuviainc.com>2021-05-05 23:04:55 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-05-17 02:10:31 +0000
commite0cb5e1814a67bb12dd476a72d1698350633bcbb (patch)
tree535094fade316b8293ffe58bbb4ace0e0afe2bac /MdeModulePkg/Library/PiDxeS3BootScriptLib
parent32928415e36b3e234efb5c24143e06060a68fba3 (diff)
downloadedk2-e0cb5e1814a67bb12dd476a72d1698350633bcbb.tar.gz
MdeModulePkg: Fix various typos
Fix various typos throughout MdeModulePkg. Signed-off-by: Rebecca Cran <rebecca@nuviainc.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
Diffstat (limited to 'MdeModulePkg/Library/PiDxeS3BootScriptLib')
-rw-r--r--MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c b/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c
index df77567819..038dd20b90 100644
--- a/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c
+++ b/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c
@@ -369,7 +369,7 @@ ScriptIoWrite (
return EFI_SUCCESS;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_IO_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_IO_WRITE OP code.
@param Script Pointer to the node which is to be interpreted.
@@ -598,7 +598,7 @@ ScriptMemoryWrite (
return EFI_SUCCESS;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_MEM_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_MEM_WRITE OP code.
@param[in] Script Pointer to the node which is to be interpreted.
@@ -859,7 +859,7 @@ ScriptPciCfgWrite (
return ScriptPciCfg2Write (Width, 0, Address, Count, Buffer);
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE OP code.
@param Script The pointer of typed node in boot script table
@@ -887,7 +887,7 @@ BootScriptExecutePciCfgWrite (
return ScriptPciCfgWrite (Width, Address, Count, Buffer);
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_IO_READ_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_IO_READ_WRITE OP code.
@param Script The pointer of typed node in boot script table
@param AndMask Mask value for 'and' operation
@@ -931,7 +931,7 @@ BootScriptExecuteIoReadWrite (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_MEM_READ_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_MEM_READ_WRITE OP code.
@param Script The pointer of typed node in boot script table
@param AndMask Mask value for 'and' operation
@@ -975,7 +975,7 @@ BootScriptExecuteMemoryReadWrite (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CFG_READ_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CFG_READ_WRITE OP code.
@param Script The pointer of typed node in boot script table
@param AndMask Mask value for 'and' operation
@@ -1023,7 +1023,7 @@ BootScriptExecutePciCfgReadWrite (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_SMBUS_EXECUTE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_SMBUS_EXECUTE OP code.
@param Script The pointer of typed node in boot script table
@@ -1054,7 +1054,7 @@ BootScriptExecuteSmbusExecute (
);
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_STALL OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_STALL OP code.
@param Script The pointer of typed node in boot script table
@@ -1075,7 +1075,7 @@ BootScriptExecuteStall (
return EFI_SUCCESS;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_DISPATCH OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_DISPATCH OP code.
@param Script The pointer of typed node in boot script table
@retval EFI_SUCCESS The operation was executed successfully
@@ -1099,7 +1099,7 @@ BootScriptExecuteDispatch (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_DISPATCH_2 OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_DISPATCH_2 OP code.
@param Script The pointer of typed node in boot script table
@retval EFI_SUCCESS The operation was executed successfully
@@ -1124,7 +1124,7 @@ BootScriptExecuteDispatch2 (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_MEM_POLL OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_MEM_POLL OP code.
@param Script The pointer of typed node in boot script table
@param AndMask Mask value for 'and' operation
@@ -1325,7 +1325,7 @@ CheckAndOrMask (
return;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_IO_POLL OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_IO_POLL OP code.
@param Script The pointer of typed node in boot script table
@param AndMask Mask value for 'and' operation
@@ -1382,7 +1382,7 @@ BootScriptExecuteIoPoll (
}
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_WRITE OP code.
@param Script The pointer of S3 boot script
@@ -1415,7 +1415,7 @@ BootScriptExecutePciCfg2Write (
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_READ_WRITE OP code.
@param Script The pointer of S3 boot script
@param AndMask Mask value for 'and' operation
@@ -1463,7 +1463,7 @@ BootScriptExecutePciCfg2ReadWrite (
return Status;
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_POLL OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG_POLL OP code.
@param Script The pointer of S3 boot script
@param AndMask Mask value for 'and' operation
@@ -1522,7 +1522,7 @@ BootScriptPciCfgPoll (
}
/**
- Interprete the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL OP code.
+ Interpret the boot script node with EFI_BOOT_SCRIPT_PCI_CONFIG2_POLL OP code.
@param Script The pointer of S3 Boot Script
@param AndMask Mask value for 'and' operation