]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.c
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2920 6f19259b...
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / OemHookStatusCodeLibNull / OemHookStatusCodeLibNull.c
CommitLineData
54bd896e 1/** @file\r
2 OEM hook status code library functions with no library constructor/destructor\r
3\r
4 Copyright (c) 2006, Intel Corporation\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 Module Name: OemHookStatusCodeLibNull.c\r
14\r
15**/\r
16\r
a97a7e79 17#include <PiPei.h>\r
54bd896e 18\r
19/**\r
20\r
21 Initialize OEM status code device .\r
22\r
23 @return Always return EFI_SUCCESS.\r
24\r
25**/\r
26EFI_STATUS\r
27EFIAPI\r
28OemHookStatusCodeInitialize (\r
29 VOID\r
30 )\r
31{\r
32 return EFI_SUCCESS;\r
33}\r
34\r
35/**\r
36 Report status code to OEM device.\r
37 \r
38 @param CodeType Indicates the type of status code being reported. Type EFI_STATUS_CODE_TYPE is defined in "Related Definitions" below.\r
39 \r
40 @param Value Describes the current status of a hardware or software entity. \r
41 This included information about the class and subclass that is used to classify the entity \r
42 as well as an operation. For progress codes, the operation is the current activity. \r
43 For error codes, it is the exception. For debug codes, it is not defined at this time. \r
44 Type EFI_STATUS_CODE_VALUE is defined in "Related Definitions" below. \r
45 Specific values are discussed in the Intel? Platform Innovation Framework for EFI Status Code Specification.\r
46 \r
47 @param Instance The enumeration of a hardware or software entity within the system. \r
48 A system may contain multiple entities that match a class/subclass pairing. \r
49 The instance differentiates between them. An instance of 0 indicates that instance information is unavailable, \r
50 not meaningful, or not relevant. Valid instance numbers start with 1.\r
51\r
52\r
53 @param CallerId This optional parameter may be used to identify the caller. \r
54 This parameter allows the status code driver to apply different rules to different callers. \r
55 Type EFI_GUID is defined in InstallProtocolInterface() in the EFI 1.10 Specification.\r
56\r
57\r
58 @param Data This optional parameter may be used to pass additional data\r
59 \r
60 @return The function always return EFI_UNSUPPORTED.\r
61\r
62**/\r
63EFI_STATUS\r
64EFIAPI\r
65OemHookStatusCodeReport (\r
66 IN EFI_STATUS_CODE_TYPE CodeType,\r
67 IN EFI_STATUS_CODE_VALUE Value,\r
68 IN UINT32 Instance,\r
69 IN EFI_GUID *CallerId, OPTIONAL\r
70 IN EFI_STATUS_CODE_DATA *Data OPTIONAL\r
71 )\r
72{\r
73 return EFI_UNSUPPORTED;\r
74}\r
75\r