]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.c
remove some comments introduced by tools.
[mirror_edk2.git] / MdePkg / Library / PeiCoreEntryPoint / PeiCoreEntryPoint.c
index ab2a172399b006e892df460a819ec8539a0db2be..fdddf661b6f09177732b09e02ef5837720c50e6a 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Entry point to a the PEI Core.\r
 \r
-Copyright (c) 2007, Intel Corporation<BR>\r
+Copyright (c) 2006 - 2007, Intel Corporation<BR>\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
@@ -12,12 +12,16 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 **/\r
 \r
+\r
+#include <PiPei.h>\r
+\r
 //\r
-// Include common header file for this module.\r
+// The Library classes this module produced\r
 //\r
-#include "CommonHeader.h"\r
+#include <Library/PeiCoreEntryPoint.h>\r
 \r
 /**\r
+\r
   Enrty point to PEI core.\r
 \r
   @param SecCoreData    Points to a data structure containing\r
@@ -40,23 +44,21 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
                         and/or code in these early PPIs.\r
 \r
 **/\r
-EFI_STATUS\r
-EFIAPI\r
-_ModuleEntryPoint (\r
-  IN CONST EFI_SEC_PEI_HAND_OFF    *SecCoreData,\r
-  IN CONST EFI_PEI_PPI_DESCRIPTOR  *PpiList\r
-  )\r
+VOID\r
+EFIAPI \r
+_ModuleEntryPoint(\r
+  IN CONST  EFI_SEC_PEI_HAND_OFF    *SecCoreData,\r
+  IN CONST  EFI_PEI_PPI_DESCRIPTOR  *PpiList\r
+)\r
 {\r
-  //\r
-  // Call the PEI Core entry point\r
-  //\r
-  return ProcessModuleEntryPointList (SecCoreData, PpiList, NULL);\r
+  ProcessModuleEntryPointList (SecCoreData, PpiList, NULL);\r
 }\r
 \r
 \r
 /**\r
+  \r
   Wrapper of enrty point to PEI core.\r
-\r
+  \r
   @param SecCoreData    Points to a data structure containing\r
                         information about the PEI core's\r
                         operating environment, such as the size\r
@@ -77,11 +79,12 @@ _ModuleEntryPoint (
                         and/or code in these early PPIs.\r
 \r
 **/\r
-EFI_STATUS\r
+VOID\r
+EFIAPI\r
 EfiMain (\r
-  IN CONST EFI_SEC_PEI_HAND_OFF    *SecCoreData,\r
-  IN CONST EFI_PEI_PPI_DESCRIPTOR  *PpiList\r
+  IN CONST  EFI_SEC_PEI_HAND_OFF    *SecCoreData,\r
+  IN CONST  EFI_PEI_PPI_DESCRIPTOR  *PpiList\r
   )\r
 {\r
-  return _ModuleEntryPoint (SecCoreData, PpiList);\r
+  _ModuleEntryPoint (SecCoreData, PpiList);\r
 }\r