summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c')
-rw-r--r--MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
index da5fa7b094..e3de4f117a 100644
--- a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
+++ b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
@@ -56,7 +56,7 @@ ResetPlatformSpecificGuid (
/**
This function examines the DataSize and ResetData parameters passed to
to ResetSystem() and detemrines if the ResetData contains a Null-terminated
- Unicode string followed by a GUID specific subtype. If the GUID specific
+ Unicode string followed by a GUID specific subtype. If the GUID specific
subtype is present, then a pointer to the GUID value in ResetData is returned.
@param[in] DataSize The size, in bytes, of ResetData.
@@ -107,7 +107,7 @@ GetResetPlatformSpecificGuid (
}
/**
- This is a helper function that creates the reset data buffer that can be
+ This is a helper function that creates the reset data buffer that can be
passed into ResetSystem().
The reset data buffer is returned in ResetData and contains ResetString
@@ -179,7 +179,7 @@ BuildResetData (
if (ResetString == NULL) {
ResetString = L""; // Use an empty string.
}
-
+
//
// Calculate the total buffer required for ResetData.
//
@@ -215,6 +215,6 @@ BuildResetData (
if (ExtraDataSize > 0) {
CopyMem (Data, ExtraData, ExtraDataSize);
}
-
+
return RETURN_SUCCESS;
}