]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.c
MdeModulePkg: Remove S3Lib.h and PeiS3LibNull
[mirror_edk2.git] / MdeModulePkg / Library / PeiRecoveryLibNull / PeiRecoveryLibNull.c
CommitLineData
8dbae30d 1/** @file\r
5933acc3 2 Null Recovery Library instance does nothing and returns unsupported status.\r
3\r
4 This library instance is no longer used and module using this library\r
5 class should update to directly locate EFI_PEI_RECOVERY_MODULE_PPI defined\r
d1102dba 6 in PI 1.2 specification.\r
4fb31c2c 7\r
d1102dba 8Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9d510e61 9SPDX-License-Identifier: BSD-2-Clause-Patent\r
4fb31c2c 10\r
11**/\r
12#include <PiPei.h>\r
109e9a61 13#include <Library/RecoveryLib.h>\r
4fb31c2c 14\r
15/**\r
109e9a61 16 Calling this function causes the system do recovery boot path.\r
d1102dba 17\r
5d69642d 18 @retval EFI_UNSUPPORTED Recovery is not supported.\r
4fb31c2c 19**/\r
20EFI_STATUS\r
21EFIAPI\r
e8da1266 22PeiRecoverFirmware (\r
4fb31c2c 23 VOID\r
24 )\r
25{\r
26 return EFI_UNSUPPORTED;\r
27}\r
28\r