1 | /** @file
|
---|
2 | PCI Enumeration Complete Protocol as defined in the PI 1.1 specification.
|
---|
3 | This protocol indicates that pci enumeration complete
|
---|
4 |
|
---|
5 | Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | @par Revision Reference:
|
---|
9 | This Protocol is defined in UEFI Platform Initialization Specification 1.2
|
---|
10 | Volume 5: Standards
|
---|
11 |
|
---|
12 | **/
|
---|
13 |
|
---|
14 | #ifndef _PCI_ENUMERATION_COMPLETE_H_
|
---|
15 | #define _PCI_ENUMERATION_COMPLETE_H_
|
---|
16 |
|
---|
17 | #define EFI_PCI_ENUMERATION_COMPLETE_GUID \
|
---|
18 | { \
|
---|
19 | 0x30cfe3e7, 0x3de1, 0x4586, { 0xbe, 0x20, 0xde, 0xab, 0xa1, 0xb3, 0xb7, 0x93 } \
|
---|
20 | }
|
---|
21 |
|
---|
22 | extern EFI_GUID gEfiPciEnumerationCompleteProtocolGuid;
|
---|
23 |
|
---|
24 | #endif
|
---|