Deleted Added
full compact
efipciio.h (329145) efipciio.h (346482)
1/* $FreeBSD: stable/11/stand/efi/include/efipciio.h 293724 2016-01-12 02:17:39Z smh $ */
1/* $FreeBSD: stable/11/stand/efi/include/efipciio.h 346482 2019-04-21 04:26:02Z kevans $ */
2/** @file
3 EFI PCI I/O Protocol provides the basic Memory, I/O, PCI configuration,
4 and DMA interfaces that a driver uses to access its PCI controller.
5
6 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17#ifndef __PCI_IO_H__
18#define __PCI_IO_H__
19
2/** @file
3 EFI PCI I/O Protocol provides the basic Memory, I/O, PCI configuration,
4 and DMA interfaces that a driver uses to access its PCI controller.
5
6 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17#ifndef __PCI_IO_H__
18#define __PCI_IO_H__
19
20#define EFI_PCI_ROOT_IO_GUID \
21 { 0x2F707EBB, 0x4A1A, 0x11d4, { 0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D }}
22
20///
21/// Global ID for the PCI I/O Protocol
22///
23#define EFI_PCI_IO_PROTOCOL_GUID \
24 { 0x4cf5b200, 0x68b8, 0x4ca5, {0x9e, 0xec, 0xb2, 0x3e, 0x3f, 0x50, 0x2, 0x9a} }
25
26typedef struct _EFI_PCI_IO_PROTOCOL EFI_PCI_IO_PROTOCOL;
27

--- 530 unchanged lines hidden ---
23///
24/// Global ID for the PCI I/O Protocol
25///
26#define EFI_PCI_IO_PROTOCOL_GUID \
27 { 0x4cf5b200, 0x68b8, 0x4ca5, {0x9e, 0xec, 0xb2, 0x3e, 0x3f, 0x50, 0x2, 0x9a} }
28
29typedef struct _EFI_PCI_IO_PROTOCOL EFI_PCI_IO_PROTOCOL;
30

--- 530 unchanged lines hidden ---