]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Universal / StatusCodeHandler / Pei / StatusCodeHandlerPei.c
index 368f2056d929d411ce57480e0c28199832e6e083..f9d9f154ba2831835fad5e49bed7c358d5819fab 100644 (file)
@@ -2,7 +2,7 @@
   Report Status Code Handler PEIM which produces general handlers and hook them\r
   onto the PEI status code router.\r
 \r
-  Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 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
@@ -17,7 +17,7 @@
 \r
 /**\r
   Entry point of Status Code PEIM.\r
-  \r
+\r
   This function is the entry point of this Status Code PEIM.\r
   It initializes supported status code devices according to PCD settings,\r
   and installs Status Code PPI.\r
@@ -54,13 +54,13 @@ StatusCodeHandlerPeiEntry (
   if (FeaturePcdGet (PcdStatusCodeUseSerial)) {\r
     Status = SerialPortInitialize();\r
     ASSERT_EFI_ERROR (Status);\r
-    Status = RscHandlerPpi->Register (SerialStatusCodeReportWorker);                     \r
+    Status = RscHandlerPpi->Register (SerialStatusCodeReportWorker);\r
     ASSERT_EFI_ERROR (Status);\r
   }\r
   if (FeaturePcdGet (PcdStatusCodeUseMemory)) {\r
     Status = MemoryStatusCodeInitializeWorker ();\r
     ASSERT_EFI_ERROR (Status);\r
-    Status = RscHandlerPpi->Register (MemoryStatusCodeReportWorker);                     \r
+    Status = RscHandlerPpi->Register (MemoryStatusCodeReportWorker);\r
     ASSERT_EFI_ERROR (Status);\r
   }\r
 \r