]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Application/HelloWorld/HelloWorld.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Application / HelloWorld / HelloWorld.c
index 164571bfb0ce43ce393d7f37939a7bad7bff7f44..0008cd14fda9f5f0fbf21b8df2a65682bfcc013d 100644 (file)
@@ -1,15 +1,15 @@
 /** @file\r
-  This sample application bases on HelloWorld PCD setting \r
+  This sample application bases on HelloWorld PCD setting\r
   to print "UEFI Hello World!" to the UEFI Console.\r
 \r
-  Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
-  This program and the accompanying materials                          \r
-  are licensed and made available under the terms and conditions of the BSD License         \r
-  which accompanies this distribution.  The full text of the license may be found at        \r
-  http://opensource.org/licenses/bsd-license.php                                            \r
+  Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
 \r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
 **/\r
 \r
@@ -32,9 +32,9 @@ GLOBAL_REMOVE_IF_UNREFERENCED EFI_STRING_ID mStringHelpTokenId = STRING_TOKEN (S
   The user Entry Point for Application. The user code starts with this function\r
   as the real entry point for the application.\r
 \r
-  @param[in] ImageHandle    The firmware allocated handle for the EFI image.  \r
+  @param[in] ImageHandle    The firmware allocated handle for the EFI image.\r
   @param[in] SystemTable    A pointer to the EFI System Table.\r
-  \r
+\r
   @retval EFI_SUCCESS       The entry point is executed successfully.\r
   @retval other             Some error occurs when executing this entry point.\r
 \r
@@ -46,19 +46,19 @@ UefiMain (
   IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
-       UINT32 Index;\r
-       \r
-       Index = 0;\r
-  \r
+  UINT32 Index;\r
+\r
+  Index = 0;\r
+\r
   //\r
   // Three PCD type (FeatureFlag, UINT32 and String) are used as the sample.\r
   //\r
   if (FeaturePcdGet (PcdHelloWorldPrintEnable)) {\r
-       for (Index = 0; Index < PcdGet32 (PcdHelloWorldPrintTimes); Index ++) {\r
-         //\r
-         // Use UefiLib Print API to print string to UEFI console\r
-         //\r
-       Print ((CHAR16*)PcdGetPtr (PcdHelloWorldPrintString));\r
+    for (Index = 0; Index < PcdGet32 (PcdHelloWorldPrintTimes); Index ++) {\r
+      //\r
+      // Use UefiLib Print API to print string to UEFI console\r
+      //\r
+      Print ((CHAR16*)PcdGetPtr (PcdHelloWorldPrintString));\r
     }\r
   }\r
 \r