X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=IntelFrameworkModulePkg%2FInclude%2FGuid%2FDataHubStatusCodeRecord.h;fp=IntelFrameworkModulePkg%2FInclude%2FGuid%2FDataHubStatusCodeRecord.h;h=0000000000000000000000000000000000000000;hp=3f1b918f4711a3cd7d91c936565d7d43ac71ba29;hb=aa7fc1c11c3d57d82842dbede50d064639671a98;hpb=4286eb22f4aec33b90574b998a31f8bd34dd4f47 diff --git a/IntelFrameworkModulePkg/Include/Guid/DataHubStatusCodeRecord.h b/IntelFrameworkModulePkg/Include/Guid/DataHubStatusCodeRecord.h deleted file mode 100644 index 3f1b918f47..0000000000 --- a/IntelFrameworkModulePkg/Include/Guid/DataHubStatusCodeRecord.h +++ /dev/null @@ -1,55 +0,0 @@ -/** @file - GUID used to identify Data Hub records logged by Status Code Protocol. - -Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
-SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef __DATA_HUB_STATUS_CODE_RECORD_H__ -#define __DATA_HUB_STATUS_CODE_RECORD_H__ - -/// -/// The Global ID used to identify a structure of type DATA_HUB_STATUS_CODE_DATA_RECORD. -/// -#define EFI_DATA_HUB_STATUS_CODE_RECORD_GUID \ - { \ - 0xd083e94c, 0x6560, 0x42e4, {0xb6, 0xd4, 0x2d, 0xf7, 0x5a, 0xdf, 0x6a, 0x2a } \ - } - -/// -/// The Data Hub data record that is used to store all the parameters passed into -/// the ReportStatusCode() service of the EFI_STATUS_CODE_PROTOCOL. -/// -typedef struct { - /// - /// Status Code type to be reported. - /// - EFI_STATUS_CODE_TYPE CodeType; - - /// - /// An operation, plus value information about the class and subclass, used to - /// classify the hardware and software entity. - /// - EFI_STATUS_CODE_VALUE Value; - - /// - /// The enumeration of a hardware or software entity within - /// the system. Valid instance numbers start with 1. - /// - UINT32 Instance; - - /// - /// Identify the caller. - /// - EFI_GUID CallerId; - - /// - /// Additional status code data. - /// - EFI_STATUS_CODE_DATA Data; -} DATA_HUB_STATUS_CODE_DATA_RECORD; - -extern EFI_GUID gEfiDataHubStatusCodeRecordGuid; - -#endif