diff options
Diffstat (limited to 'MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c')
-rw-r--r-- | MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c b/MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c index 4dbd49b7e4..178b24bcda 100644 --- a/MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c +++ b/MdeModulePkg/Universal/DevicePathDxe/DevicePathFromText.c @@ -431,7 +431,7 @@ Dtoi64 ( Convert integer string to uint.
- @param Str The integer string. If leading with "0x" or "0X", it's heximal.
+ @param Str The integer string. If leading with "0x" or "0X", it's hexadecimal.
@return A UINTN value represented by Str
@@ -456,7 +456,7 @@ Strtoi ( Convert integer string to 64 bit data.
- @param Str The integer string. If leading with "0x" or "0X", it's heximal.
+ @param Str The integer string. If leading with "0x" or "0X", it's hexadecimal.
@param Data A pointer to the UINT64 value represented by Str
**/
@@ -519,7 +519,7 @@ StrToBuf ( }
//
- // For odd charaters, write the upper nibble for each buffer byte,
+ // For odd characters, write the upper nibble for each buffer byte,
// and for even characters, the lower nibble.
//
if ((Index & 1) == 0) {
@@ -597,7 +597,7 @@ StrToGuid ( }
//
- // Get the followin 8 bytes data
+ // Get the following 8 bytes data
//
StrToBuf (&Guid->Data4[0], 2, Str);
//
@@ -661,7 +661,7 @@ StrToIPv6Addr ( /**
Converts a Unicode string to ASCII string.
- @param Str The equiventant Unicode string
+ @param Str The equivalent Unicode string
@param AsciiStr On input, it points to destination ASCII string buffer; on output, it points
to the next ASCII string next to it
@@ -1035,11 +1035,11 @@ DevPathFromTextParallelPort ( }
/**
- Converts a text device path node to ACPI extention device path structure.
+ Converts a text device path node to ACPI extension device path structure.
@param TextDeviceNode The input Text device path node.
- @return A pointer to the newly-created ACPI extention device path structure.
+ @return A pointer to the newly-created ACPI extension device path structure.
**/
EFI_DEVICE_PATH_PROTOCOL *
@@ -1086,11 +1086,11 @@ DevPathFromTextAcpiEx ( }
/**
- Converts a text device path node to ACPI extention device path structure.
+ Converts a text device path node to ACPI extension device path structure.
@param TextDeviceNode The input Text device path node.
- @return A pointer to the newly-created ACPI extention device path structure.
+ @return A pointer to the newly-created ACPI extension device path structure.
**/
EFI_DEVICE_PATH_PROTOCOL *
@@ -2578,7 +2578,7 @@ DevPathFromTextFvFile ( @param TextDeviceNode The input Text device path node.
- @return A pointer to the newly-created BIOS Boot Specificationa device path structure.
+ @return A pointer to the newly-created BIOS Boot Specification device path structure.
**/
EFI_DEVICE_PATH_PROTOCOL *
|