mirror of https://github.com/acidanthera/audk.git
26 lines
846 B
C
26 lines
846 B
C
/** @file
|
|
Recommended GUID to be used in the Vendor Hardware device path nodes that
|
|
identify virtio-mmio transports.
|
|
|
|
Copyright (C) 2014, Red Hat, Inc.
|
|
|
|
This program and the accompanying materials are licensed and made available
|
|
under the terms and conditions of the BSD License that accompanies this
|
|
distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef __VIRTIO_MMIO_TRANSPORT_H__
|
|
#define __VIRTIO_MMIO_TRANSPORT_H__
|
|
|
|
#define VIRTIO_MMIO_TRANSPORT_GUID \
|
|
{0x837dca9e, 0xe874, 0x4d82, {0xb2, 0x9a, 0x23, 0xfe, 0x0e, 0x23, 0xd1, 0xe2}}
|
|
|
|
extern EFI_GUID gVirtioMmioTransportGuid;
|
|
|
|
#endif
|