1 /*++
2 
3   Copyright (c) 2004  - 2014, Intel Corporation. All rights reserved.<BR>
4 
5 
6   This program and the accompanying materials are licensed and made available under
7 
8   the terms and conditions of the BSD License that accompanies this distribution.
9 
10   The full text of the license may be found at
11 
12   http://opensource.org/licenses/bsd-license.php.
13 
14 
15 
16   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 
18   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 
20 
21 
22 
23 
24 Module Name:
25 
26   PciLanInfo.h
27 
28 Abstract:
29 
30 --*/
31 
32 #ifndef _PCI_LAN_INFO_GUID_H_
33 #define _PCI_LAN_INFO_GUID_H_
34 
35 #pragma pack(1)
36 
37 //
38 // structure used for Pci Lan variable
39 //
40 typedef struct {
41   UINT8         PciBus;
42   UINT8         PciDevice;
43   UINT8         PciFunction;
44 } PCI_LAN_INFO;
45 
46 #pragma pack()
47 
48 #define EFI_PCI_LAN_INFO_GUID \
49   {0xd9a1427, 0xe02a, 0x437d, 0x92, 0x6b, 0xaa, 0x52, 0x1f, 0xd7, 0x22, 0xba};
50 
51 extern EFI_GUID gEfiPciLanInfoGuid;
52 
53 #endif
54