]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Pei/StatusCode/StatusCode.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Core / Pei / StatusCode / StatusCode.c
index bd8cb26e61732ce7cc3e66fc61feb6d4945a64a1..5877b7505546c23c0974b5fd99533f3c27f96de4 100644 (file)
@@ -1,77 +1,57 @@
 /** @file\r
+  Pei Core Status Code Support\r
 \r
-Copyright (c) 2006, Intel Corporation                                                         \r
-All rights reserved. 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
+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
-Module Name:\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
-  StatusCode.c\r
+**/\r
 \r
-Abstract:\r
+#include "PeiMain.h"\r
 \r
-  Pei Core Status Code Support\r
+/**\r
 \r
-Revision History\r
+  Core version of the Status Code reporter\r
 \r
-**/\r
 \r
-#include <PeiMain.h>\r
+  @param PeiServices     An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
+  @param CodeType        Type of Status Code.\r
+  @param Value           Value to output for Status Code.\r
+  @param Instance        Instance Number of this status code.\r
+  @param CallerId        ID of the caller of this status code.\r
+  @param Data            Optional data associated with this status code.\r
 \r
+  @retval EFI_SUCCESS             if status code is successfully reported\r
+  @retval EFI_NOT_AVAILABLE_YET   if StatusCodePpi has not been installed\r
+\r
+**/\r
 EFI_STATUS\r
 EFIAPI\r
 PeiReportStatusCode (\r
   IN CONST EFI_PEI_SERVICES         **PeiServices,\r
   IN EFI_STATUS_CODE_TYPE           CodeType,\r
-  IN EFI_STATUS_CODE_VALUE          Value, \r
+  IN EFI_STATUS_CODE_VALUE          Value,\r
   IN UINT32                         Instance,\r
   IN CONST EFI_GUID                 *CallerId,\r
   IN CONST EFI_STATUS_CODE_DATA     *Data OPTIONAL\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  Core version of the Status Code reporter\r
-\r
-Arguments:\r
-\r
-  PeiServices - The PEI core services table.\r
-  \r
-  CodeType    - Type of Status Code.\r
-  \r
-  Value       - Value to output for Status Code.\r
-  \r
-  Instance    - Instance Number of this status code.\r
-  \r
-  CallerId    - ID of the caller of this status code.\r
-  \r
-  Data        - Optional data associated with this status code.\r
-\r
-Returns:\r
-\r
-  Status  - EFI_SUCCESS             if status code is successfully reported\r
-          - EFI_NOT_AVAILABLE_YET   if StatusCodePpi has not been installed\r
-\r
---*/\r
 {\r
   EFI_STATUS                Status;\r
   EFI_PEI_PROGRESS_CODE_PPI *StatusCodePpi;\r
-  \r
 \r
   //\r
-  //Locate StatusCode Ppi.\r
+  // Locate StatusCode Ppi.\r
   //\r
   Status = PeiServicesLocatePpi (\r
-             &gEfiPeiStatusCodePpiGuid,         \r
-             0,                         \r
-             NULL,                      \r
-             (VOID **)&StatusCodePpi                  \r
+             &gEfiPeiStatusCodePpiGuid,\r
+             0,\r
+             NULL,\r
+             (VOID **)&StatusCodePpi\r
              );\r
 \r
   if (!EFI_ERROR (Status)) {\r
@@ -83,12 +63,11 @@ Returns:
                             CallerId,\r
                             Data\r
                             );\r
\r
-   return Status;   \r
-  } \r
-  \r
-  \r
-  return  EFI_NOT_AVAILABLE_YET; \r
+\r
+   return Status;\r
+  }\r
+\r
+  return  EFI_NOT_AVAILABLE_YET;\r
 }\r
 \r
 \r