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