]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.c
Update the copyright notice format
[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
6 in PI 1.2 specification. \r
4fb31c2c 7\r
cd5ebaa0
HT
8Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
9This program and the accompanying materials\r
4fb31c2c 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
109e9a61 19#include <Library/RecoveryLib.h>\r
4fb31c2c 20\r
21/**\r
109e9a61 22 Calling this function causes the system do recovery boot path.\r
4fb31c2c 23 \r
5d69642d 24 @retval EFI_UNSUPPORTED Recovery is not supported.\r
4fb31c2c 25**/\r
26EFI_STATUS\r
27EFIAPI\r
e8da1266 28PeiRecoverFirmware (\r
4fb31c2c 29 VOID\r
30 )\r
31{\r
32 return EFI_UNSUPPORTED;\r
33}\r
34\r