Last change
on this file since 99404 was 99404, checked in by vboxsync, 22 months ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
685 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 |
|
---|
3 | Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
|
---|
4 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
5 |
|
---|
6 | **/
|
---|
7 |
|
---|
8 | #ifndef EDKII_PCI_DEVICE_PPI_H_
|
---|
9 | #define EDKII_PCI_DEVICE_PPI_H_
|
---|
10 |
|
---|
11 | #include <Protocol/PciIo.h>
|
---|
12 | #include <Protocol/DevicePath.h>
|
---|
13 |
|
---|
14 | ///
|
---|
15 | /// Global ID for the EDKII_PCI_DEVICE_PPI_GUID.
|
---|
16 | ///
|
---|
17 | #define EDKII_PCI_DEVICE_PPI_GUID \
|
---|
18 | { \
|
---|
19 | 0x1597ab4f, 0xd542, 0x4efe, { 0x9a, 0xf7, 0xb2, 0x44, 0xec, 0x54, 0x4c, 0x0b } \
|
---|
20 | }
|
---|
21 |
|
---|
22 | ///
|
---|
23 | /// PCI Device PPI structure.
|
---|
24 | ///
|
---|
25 | typedef struct {
|
---|
26 | EFI_PCI_IO_PROTOCOL PciIo;
|
---|
27 | EFI_DEVICE_PATH_PROTOCOL *DevicePath;
|
---|
28 | } EDKII_PCI_DEVICE_PPI;
|
---|
29 |
|
---|
30 | extern EFI_GUID gEdkiiPeiPciDevicePpiGuid;
|
---|
31 |
|
---|
32 | #endif // EDKII_PCI_DEVICE_PPI_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.