1 /*++ 2 3 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved 4 5 This program and the accompanying materials are licensed and made available under 6 the terms and conditions of the BSD License that accompanies this distribution. 7 The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 14 15 Module Name: 16 17 SmmSmbus.h 18 19 Abstract: 20 21 SmmSmbus Protocol 22 23 --*/ 24 #ifndef __EFI_SMM_SMBUS_PROTOCOL_H__ 25 #define __EFI_SMM_SMBUS_PROTOCOL_H__ 26 27 // 28 // GUID for the SmmSmbus Protocol 29 // 30 // EDK and EDKII have different GUID formats 31 // 32 33 #define EFI_SMM_SMBUS_PROTOCOL_GUID \ 34 { \ 35 0x72e40094, 0x2ee1, 0x497a, 0x8f, 0x33, 0x4c, 0x93, 0x4a, 0x9e, 0x9c, 0xc \ 36 } 37 38 // 39 // Resuse the DXE definition, and use another GUID. 40 // 41 typedef EFI_SMBUS_HC_PROTOCOL SMM_SMBUS_HC_PROTOCOL; 42 43 extern EFI_GUID gEfiSmmSmbusProtocolGuid; 44 45 #endif 46