X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=IntelFrameworkPkg%2FInclude%2FPpi%2FFindFv.h;h=40c3177f9f591de3b5d0c0d51f650eea125ac4e5;hp=d7206d2b0ab2822fea8cc4ae6247f22f6943f872;hb=ce9b1e3ae0bdcf8f926ea5132f0bd34e7d384973;hpb=470d0b274c7b3e791b664b306150147a4a10fdc8 diff --git a/IntelFrameworkPkg/Include/Ppi/FindFv.h b/IntelFrameworkPkg/Include/Ppi/FindFv.h index d7206d2b0a..40c3177f9f 100644 --- a/IntelFrameworkPkg/Include/Ppi/FindFv.h +++ b/IntelFrameworkPkg/Include/Ppi/FindFv.h @@ -1,7 +1,7 @@ /** @file This file declares FindFv PPI used to locate FVs that contain PEIMs in PEI - Copyright (c) 2007, Intel Corporation + Copyright (c) 2007 - 2009, 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 @@ -10,8 +10,6 @@ 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 - @par Revision Reference: This PPI is defined in PEI CIS Version 0.91 @@ -21,8 +19,10 @@ #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,7 +32,7 @@ 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. @@ -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;