/** @file DXE Chipset Services driver. This function is "deprecated" ;*************************************************************************** ;* Copyright (c) 2014, Insyde Software Corp. All Rights Reserved. ;* ;* You may not reproduce, distribute, publish, display, perform, modify, adapt, ;* transmit, broadcast, present, recite, release, license or otherwise exploit ;* any part of this publication in any form, by any means, without the prior ;* written permission of Insyde Software Corporation. ;* ;****************************************************************************** */ #include /** Get information of recovery FV. @param[out] RecoveryRegion recovery region table @param[out] NumberOfRegion number of recovery region @param[out] ChipsetEmuPeiMaskList Specified PEIMs don't to dispatch in recovery mode @retval EFI_SUCCESS This function always return success. **/ EFI_STATUS FvRecoveryInfo ( OUT PEI_FV_DEFINITION **RecoveryRegion, OUT UINTN *NumberOfRegion, OUT EFI_GUID **ChipsetEmuPeiMaskList ) { return EFI_UNSUPPORTED; }