]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EblExternCmd/EntryPointGlue.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / EblExternCmd / EntryPointGlue.c
index 87757dfd475ee90cc7d6f0d5a652383531d47439..d0e549bdc189eefc2ae0b2cb7b73fc4f61119de5 100644 (file)
@@ -1,5 +1,5 @@
 /** @file\r
-  Glue code that contains the EFI entry point and converts it to an EBL \r
+  Glue code that contains the EFI entry point and converts it to an EBL\r
   ASCII Argc, Argv sytle entry point\r
 \r
 \r
@@ -88,7 +88,7 @@ ParseArguments (
       } else if (*Char != ' ') {\r
         Argv[Arg++] = Char;\r
         LookingForArg = FALSE;\r
-      } \r
+      }\r
     } else {\r
       // Looking for the terminator of an Argv[] entry\r
       if ((InQuote && (*Char == '"')) || (!InQuote && (*Char == ' '))) {\r
@@ -112,12 +112,12 @@ ParseArguments (
 \r
   return;\r
 }\r
\r
+\r
 \r
 \r
 \r
 /**\r
-  Embedded Boot Loader (EBL) - A simple EFI command line application for embedded \r
+  Embedded Boot Loader (EBL) - A simple EFI command line application for embedded\r
   devices. PcdEmbeddedAutomaticBootCommand is a complied in command line that\r
   gets executed automatically. The ; separator allows multiple commands\r
   for each command line.\r
@@ -133,7 +133,7 @@ EFIAPI
 EdkExternCmdEntry (\r
   IN EFI_HANDLE                            ImageHandle,\r
   IN EFI_SYSTEM_TABLE                      *SystemTable\r
-  ) \r
+  )\r
 {\r
   EFI_STATUS                  Status;\r
   EFI_LOADED_IMAGE_PROTOCOL   *ImageInfo;\r
@@ -144,10 +144,10 @@ EdkExternCmdEntry (
   if (EFI_ERROR (Status)) {\r
     Argc = 0;\r
   } else {\r
-    // Looks like valid commands were passed in. \r
+    // Looks like valid commands were passed in.\r
     ParseArguments (ImageInfo->LoadOptions, ImageInfo->LoadOptionsSize, &Argc, Argv);\r
   }\r
-      \r
+\r
   return EblMain (Argc, Argv);\r
 }\r
 \r