diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-11-18 16:01:09 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-11-18 16:01:09 +0000 |
commit | 67c89a212705e53508f1f54e611ee9757ce34502 (patch) | |
tree | 1a270f8014e22f65b0f2de566ac8ce1c59653ceb /MdePkg/Include | |
parent | 10e2e070c9f62e884d7b18752ff91ca9d0b74fb2 (diff) | |
download | edk2-platforms-67c89a212705e53508f1f54e611ee9757ce34502.tar.xz |
Fix up the comment for several functions and make sure the IN and OUT modifier of the function parameter is correct.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4301 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Library/PeiServicesLib.h | 91 | ||||
-rw-r--r-- | MdePkg/Include/Pi/PiPeiCis.h | 6 |
2 files changed, 86 insertions, 11 deletions
diff --git a/MdePkg/Include/Library/PeiServicesLib.h b/MdePkg/Include/Library/PeiServicesLib.h index 2d028239d7..bed110584c 100644 --- a/MdePkg/Include/Library/PeiServicesLib.h +++ b/MdePkg/Include/Library/PeiServicesLib.h @@ -1,7 +1,7 @@ /** @file
Header file for PEI Services Library.
- Copyright (c) 2006, Intel Corporation
+ Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -109,7 +109,7 @@ PeiServicesNotifyPpi ( EFI_STATUS
EFIAPI
PeiServicesGetBootMode (
- IN OUT EFI_BOOT_MODE *BootMode
+ OUT EFI_BOOT_MODE *BootMode
);
/**
@@ -138,7 +138,7 @@ PeiServicesSetBootMode ( EFI_STATUS
EFIAPI
PeiServicesGetHobList (
- IN OUT VOID **HobList
+ OUT VOID **HobList
);
/**
@@ -157,7 +157,7 @@ EFIAPI PeiServicesCreateHob (
IN UINT16 Type,
IN UINT16 Length,
- IN OUT VOID **Hob
+ OUT VOID **Hob
);
/**
@@ -217,7 +217,7 @@ EFIAPI PeiServicesFfsFindSectionData (
IN EFI_SECTION_TYPE SectionType,
IN EFI_PEI_FILE_HANDLE FileHandle,
- IN OUT VOID **SectionData
+ OUT VOID **SectionData
);
/**
@@ -258,7 +258,7 @@ EFIAPI PeiServicesAllocatePages (
IN EFI_MEMORY_TYPE MemoryType,
IN UINTN Pages,
- IN OUT EFI_PHYSICAL_ADDRESS *Memory
+ OUT EFI_PHYSICAL_ADDRESS *Memory
);
/**
@@ -280,9 +280,11 @@ PeiServicesAllocatePool ( );
/**
- This service resets the entire platform, including all processors and devices, and reboots the
- system.
+ Resets the entire platform.
+ @param VOID
+
+ @retval EFI_SUCCESS The function completed successfully.
@retval EFI_NOT_AVAILABLE_YET The service has not been installed yet.
**/
@@ -293,6 +295,26 @@ PeiServicesResetSystem ( );
+/**
+ This service is a wrapper for the PEI Service FfsFindByName(), except the pointer to the PEI Services
+ Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
+ Specification for details.
+
+ @param FileName A pointer to the name of the file to
+ find within the firmware volume.
+
+ @param VolumeHandle The firmware volume to search FileHandle
+ Upon exit, points to the found file's
+ handle or NULL if it could not be found.
+
+ @retval EFI_SUCCESS File was found.
+
+ @retval EFI_NOT_FOUND File was not found.
+
+ @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or
+ FileName was NULL.
+
+**/
EFI_STATUS
EFIAPI
PeiServicesFfsFindByName (
@@ -302,6 +324,24 @@ PeiServicesFfsFindByName ( );
+/**
+ This service is a wrapper for the PEI Service FfsGetFileInfo(), except the pointer to the PEI Services
+ Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
+ Specification for details.
+
+ @param FileHandle Handle of the file.
+
+ @param FileInfo Upon exit, points to the file's
+ information.
+
+ @retval EFI_SUCCESS File information returned.
+
+ @retval EFI_INVALID_PARAMETER If FileHandle does not
+ represent a valid file.
+
+ @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
+
+**/
EFI_STATUS
EFIAPI
PeiServicesFfsGetFileInfo (
@@ -309,6 +349,24 @@ PeiServicesFfsGetFileInfo ( OUT EFI_FV_FILE_INFO *FileInfo
);
+/**
+ This service is a wrapper for the PEI Service FfsGetVolumeInfo(), except the pointer to the PEI Services
+ Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
+ Specification for details.
+
+ @param VolumeHandle Handle of the volume.
+
+ @param VolumeInfo Upon exit, points to the volume's
+ information.
+
+ @retval EFI_SUCCESS File information returned.
+
+ @retval EFI_INVALID_PARAMETER If FileHandle does not
+ represent a valid file.
+
+ @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
+
+**/
EFI_STATUS
EFIAPI
PeiServicesFfsGetVolumeInfo (
@@ -317,6 +375,23 @@ PeiServicesFfsGetVolumeInfo ( );
+/**
+ This service is a wrapper for the PEI Service RegisterForShadow(), except the pointer to the PEI Services
+ Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
+ Specification for details.
+
+ @param FileHandle PEIM's file handle. Must be the currently
+ executing PEIM.
+
+ @retval EFI_SUCCESS The PEIM was successfully registered for
+ shadowing.
+
+ @retval EFI_ALREADY_STARTED The PEIM was previously
+ registered for shadowing.
+
+ @retval EFI_NOT_FOUND The FileHandle does not refer to a
+ valid file handle.
+**/
EFI_STATUS
EFIAPI
PeiServicesRegisterForShadow (
diff --git a/MdePkg/Include/Pi/PiPeiCis.h b/MdePkg/Include/Pi/PiPeiCis.h index d75a79c6b7..40af2bda2b 100644 --- a/MdePkg/Include/Pi/PiPeiCis.h +++ b/MdePkg/Include/Pi/PiPeiCis.h @@ -247,7 +247,7 @@ typedef EFI_STATUS
(EFIAPI *EFI_PEI_GET_HOB_LIST) (
IN CONST EFI_PEI_SERVICES **PeiServices,
- IN OUT VOID **HobList
+ OUT VOID **HobList
);
/**
@@ -268,7 +268,7 @@ EFI_STATUS IN CONST EFI_PEI_SERVICES **PeiServices,
IN UINT16 Type,
IN UINT16 Length,
- IN OUT VOID **Hob
+ OUT VOID **Hob
);
/**
@@ -653,7 +653,7 @@ EFI_STATUS time.
@param FileHandle PEIM's file handle. Must be the currently
- xecuting PEIM.
+ executing PEIM.
@retval EFI_SUCCESS The PEIM was successfully registered for
shadowing.
|