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