X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=IntelFrameworkPkg%2FInclude%2FPpi%2FFindFv.h;h=0ef248d8dd1684568b7e22a66ba022589e746960;hp=d7206d2b0ab2822fea8cc4ae6247f22f6943f872;hb=f22f941ed273753a0426d1234869857f19c28664;hpb=470d0b274c7b3e791b664b306150147a4a10fdc8 diff --git a/IntelFrameworkPkg/Include/Ppi/FindFv.h b/IntelFrameworkPkg/Include/Ppi/FindFv.h index d7206d2b0a..0ef248d8dd 100644 --- a/IntelFrameworkPkg/Include/Ppi/FindFv.h +++ b/IntelFrameworkPkg/Include/Ppi/FindFv.h @@ -1,28 +1,28 @@ /** @file - This file declares FindFv PPI used to locate FVs that contain PEIMs in PEI + This file declares FindFv PPI, which is used to locate FVs that contain PEIMs in PEI. - Copyright (c) 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 - http://opensource.org/licenses/bsd-license.php - - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - Module Name: FindFv.h +Copyright (c) 2007 - 2010, 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 that accompanies this distribution. +The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php. + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. @par Revision Reference: This PPI is defined in PEI CIS - Version 0.91 + Version 0.91. **/ #ifndef _FIND_FV_H_ #define _FIND_FV_H_ -#include - +/// +/// Inconsistent with specification here: +/// GUID value format has been changed to the standard GUID format. +/// #define EFI_PEI_FIND_FV_PPI_GUID \ { \ 0x36164812, 0xa023, 0x44e5, {0xbd, 0x85, 0x5, 0xbf, 0x3c, 0x77, 0x0, 0xaa } \ @@ -32,10 +32,10 @@ typedef struct _EFI_PEI_FIND_FV_PPI EFI_PEI_FIND_FV_PPI; /** This interface returns the base address of the firmware volume whose index - was passed in FvNumber.Once this function reports a firmware volume + was passed in FvNumber. Once this function reports a firmware volume index/base address pair, that index/address pairing must continue throughout PEI. - @param PeiServices Pointer to the PEI Services Table. + @param PeiServices The pointer to the PEI Services Table. @param This Interface pointer that implements the Find FV service. @param FvNumber The index of the firmware volume to locate. @param FvAddress The address of the volume to discover. @@ -55,17 +55,12 @@ EFI_STATUS ); /** - @par Ppi Description: Hardware mechanisms for locating FVs in a platform vary widely. EFI_PEI_FIND_FV_PPI serves to abstract this variation so that the PEI Foundation can remain standard across a wide variety of platforms. - - @param FindFv - Service that abstracts the location of additional firmware volumes. - **/ struct _EFI_PEI_FIND_FV_PPI { - EFI_PEI_FIND_FV_FINDFV FindFv; + EFI_PEI_FIND_FV_FINDFV FindFv; ///< Service that abstracts the location of additional firmware volumes. }; extern EFI_GUID gEfiFindFvPpiGuid;