38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/** @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 <FastRecoveryData.h>
|
|
|
|
/**
|
|
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;
|
|
}
|