]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ShellPkg: Fix typos and EDK2 coding style issues
authorTapan Shah <tapandshah@hpe.com>
Wed, 27 Apr 2016 14:55:39 +0000 (07:55 -0700)
committerJaben Carsey <jaben.carsey@intel.com>
Wed, 27 Apr 2016 16:29:35 +0000 (09:29 -0700)
Fixing typos and EDK2 coding style issues found from previous submit

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hpe.com>
Reviewed-by: Samer El-Haj-Mahmoud <elhaj@hpe.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c

index efafe6f5350dd61759c3677dff9c0a9056e23b6f..58f1814b8723fa13176dad74784949e7e9a783bf 100644 (file)
@@ -348,7 +348,7 @@ GraphicsOutputProtocolDumpInformation(
   @param[in] TheHandle      The handle that has LoadedImage installed.
   @param[in] Verbose        TRUE for additional information, FALSE otherwise.
 
-  @retval A poitner to a string containing the information.
+  @retval A pointer to a string containing the information.
 **/
 CHAR16*
 EFIAPI
@@ -364,7 +364,7 @@ EdidDiscoveredProtocolDumpInformation (
   CHAR16                                *TempRetVal;
 
   if (!Verbose) {
-    return (CatSPrint(NULL, L"EDIDDiscovered"));
+    return (CatSPrint (NULL, L"EDIDDiscovered"));
   }
 
   Status = gBS->OpenProtocol (
@@ -380,7 +380,7 @@ EdidDiscoveredProtocolDumpInformation (
     return NULL;
   }
 
-  Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN(STR_EDID_DISCOVERED_MAIN), NULL);
+  Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN (STR_EDID_DISCOVERED_MAIN), NULL);
   if (Temp == NULL) {
     return NULL;
   }
@@ -388,8 +388,8 @@ EdidDiscoveredProtocolDumpInformation (
   RetVal = CatSPrint (NULL, Temp, EdidDiscovered->SizeOfEdid);
   SHELL_FREE_NON_NULL (Temp);
 
-  if(EdidDiscovered->SizeOfEdid != 0) {
-    Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN(STR_EDID_DISCOVERED_DATA), NULL);
+  if (EdidDiscovered->SizeOfEdid != 0) {
+    Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN (STR_EDID_DISCOVERED_DATA), NULL);
     if (Temp == NULL) {
       SHELL_FREE_NON_NULL (RetVal);
       return NULL;
@@ -412,7 +412,7 @@ EdidDiscoveredProtocolDumpInformation (
   @param[in] TheHandle      The handle that has LoadedImage installed.
   @param[in] Verbose        TRUE for additional information, FALSE otherwise.
 
-  @retval A poitner to a string containing the information.
+  @retval A pointer to a string containing the information.
 **/
 CHAR16*
 EFIAPI
@@ -428,7 +428,7 @@ EdidActiveProtocolDumpInformation (
   CHAR16                    *TempRetVal;
 
   if (!Verbose) {
-    return (CatSPrint(NULL, L"EDIDActive"));
+    return (CatSPrint (NULL, L"EDIDActive"));
   }
 
   Status = gBS->OpenProtocol (
@@ -444,7 +444,7 @@ EdidActiveProtocolDumpInformation (
     return NULL;
   }
 
-  Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN(STR_EDID_ACTIVE_MAIN), NULL);
+  Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN (STR_EDID_ACTIVE_MAIN), NULL);
   if (Temp == NULL) {
     return NULL;
   }
@@ -452,8 +452,8 @@ EdidActiveProtocolDumpInformation (
   RetVal = CatSPrint (NULL, Temp, EdidActive->SizeOfEdid);
   SHELL_FREE_NON_NULL (Temp);
 
-  if(EdidActive->SizeOfEdid != 0) {
-    Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN(STR_EDID_ACTIVE_DATA), NULL);
+  if (EdidActive->SizeOfEdid != 0) {
+    Temp = HiiGetString (mHandleParsingHiiHandle, STRING_TOKEN (STR_EDID_ACTIVE_DATA), NULL);
     if (Temp == NULL) {
       SHELL_FREE_NON_NULL (RetVal);
       return NULL;