diff options
Diffstat (limited to 'EmbeddedPkg/Ebl/HwDebug.c')
-rw-r--r-- | EmbeddedPkg/Ebl/HwDebug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/EmbeddedPkg/Ebl/HwDebug.c b/EmbeddedPkg/Ebl/HwDebug.c index b14d494d5d..2ecf9d6d31 100644 --- a/EmbeddedPkg/Ebl/HwDebug.c +++ b/EmbeddedPkg/Ebl/HwDebug.c @@ -71,7 +71,7 @@ EblMdCmd ( /**
Fill Memory with data
- Argv[0] - "mfill"[.#] # is optiona width 1, 2, 4, or 8. Default 4
+ Argv[0] - "mfill"[.#] # is optional width 1, 2, 4, or 8. Default 4
Argv[1] - Hex Address to fill
Argv[2] - Data to write (0x00 is default)
Argv[3] - Number of units to dump.
@@ -83,7 +83,7 @@ EblMdCmd ( @param Argc Number of command arguments in Argv
@param Argv Array of strings that represent the parsed command line.
- Argv[0] is the comamnd name
+ Argv[0] is the command name
@return EFI_SUCCESS
@@ -163,7 +163,7 @@ CHAR8 *gPciSerialClassCodes[] = { @param Argc Number of command arguments in Argv
@param Argv Array of strings that represent the parsed command line.
- Argv[0] is the comamnd name
+ Argv[0] is the command name
@return EFI_SUCCESS
@@ -255,7 +255,7 @@ EblPciCmd ( Pci->GetLocation (Pci, &Seg, &Bus, &Dev, &Func);
if ((Bus == BusArg) && (Dev == DevArg) && (Func == FuncArg)) {
// Only print Segment if it is non zero. If you only have one PCI segment it is
- // redundent to print it out
+ // redundant to print it out
if (Seg != 0) {
AsciiPrint ("Seg:%d ", Seg);
}
|