]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.c
Fix various 'EFIAPI' inconsistencies found while building MdeModulePkg.
[mirror_edk2.git] / MdeModulePkg / Library / PeiRecoveryLibNull / PeiRecoveryLibNull.c
CommitLineData
8dbae30d 1/** @file\r
109e9a61 2 Null Recovery Library instance does nothing and returns unsupport status.\r
4fb31c2c 3\r
8dbae30d 4Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
4fb31c2c 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
109e9a61 15#include <Library/RecoveryLib.h>\r
4fb31c2c 16\r
17/**\r
109e9a61 18 Calling this function causes the system do recovery boot path.\r
4fb31c2c 19 \r
5d69642d 20 @retval EFI_UNSUPPORTED Recovery is not supported.\r
4fb31c2c 21**/\r
22EFI_STATUS\r
23EFIAPI\r
e8da1266 24PeiRecoverFirmware (\r
4fb31c2c 25 VOID\r
26 )\r
27{\r
28 return EFI_UNSUPPORTED;\r
29}\r
30\r