]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Library / PeiRecoveryLibNull / PeiRecoveryLibNull.c
... / ...
CommitLineData
1/** @file\r
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
6 in PI 1.2 specification.\r
7\r
8Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9This program and the accompanying materials\r
10are licensed and made available under the terms and conditions of the BSD License\r
11which accompanies this distribution. The full text of the license may be found at\r
12http://opensource.org/licenses/bsd-license.php\r
13\r
14THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16\r
17**/\r
18#include <PiPei.h>\r
19#include <Library/RecoveryLib.h>\r
20\r
21/**\r
22 Calling this function causes the system do recovery boot path.\r
23\r
24 @retval EFI_UNSUPPORTED Recovery is not supported.\r
25**/\r
26EFI_STATUS\r
27EFIAPI\r
28PeiRecoverFirmware (\r
29 VOID\r
30 )\r
31{\r
32 return EFI_UNSUPPORTED;\r
33}\r
34\r