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