]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add more file comments for PeiServiceTableLib
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 3 Sep 2008 07:55:15 +0000 (07:55 +0000)
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 3 Sep 2008 07:55:15 +0000 (07:55 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5790 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c
MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerInternal.h [deleted file]
MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf

index 43293fb83c62941997e68ec2a40879cebc0b30e8..da866610da7f9e561bd2c62ef59cf08557708b7c 100644 (file)
@@ -1,5 +1,8 @@
 /** @file\r
   PEI Services Table Pointer Library.\r
+  \r
+  This library is used for PEIM which does executed from flash device directly but\r
+  executed in memory.\r
 \r
   Copyright (c) 2006, Intel Corporation<BR>\r
   All rights reserved. This program and the accompanying materials\r
@@ -16,8 +19,6 @@
 #include <Library/PeiServicesTablePointerLib.h>\r
 #include <Library/DebugLib.h>\r
 \r
-#include "PeiServicesTablePointerInternal.h"\r
-\r
 STATIC EFI_PEI_SERVICES  **gPeiServices;\r
 \r
 /**\r
diff --git a/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerInternal.h b/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerInternal.h
deleted file mode 100644 (file)
index f6d9efd..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/** @file\r
-  Internal Header file for PEI Services Table Pointer Library.\r
-\r
-  Copyright (c) 2006, 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
-  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
-\r
-**/\r
-\r
-#ifndef _PEI_SERVICE_TABLE_POINTER_INTERNAL_H_\r
-#define _PEI_SERVICE_TABLE_POINTER_INTERNAL_H_\r
-\r
-/**\r
-  The constructor function caches the pointer to PEI services.\r
-  \r
-  The constructor function caches the pointer to PEI services.\r
-  It will always return EFI_SUCCESS.\r
-\r
-  @param  FileHandle  Handle of FFS header the loaded driver.\r
-  @param  PeiServices Pointer to the PEI services.\r
-\r
-  @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.\r
-\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-PeiServicesTablePointerLibConstructor (\r
-  IN EFI_PEI_FILE_HANDLE  FileHandle,\r
-  IN EFI_PEI_SERVICES     **PeiServices\r
-  )\r
-;\r
-#endif\r
index bd5656e50b66e583c94eea9f995152ec2f28c71c..1b2aa44599732a3b44a7de5465bf7e5e0fc0e3a5 100644 (file)
@@ -4,6 +4,7 @@
 # PEI Services Table Library implementation that retrieves a pointer to the\r
 #  PEI Services Table from a global variable. Not available to modules that execute from\r
 #  read-only memory.\r
+#\r
 # Copyright (c) 2007, Intel Corporation.\r
 #\r
 #  All rights reserved. This program and the accompanying materials\r