1 /** @file 2 Recommended GUID to be used in the Vendor Hardware device path nodes that 3 identify virtio-mmio transports. 4 5 Copyright (C) 2014, Red Hat, Inc. 6 7 This program and the accompanying materials are licensed and made available 8 under the terms and conditions of the BSD License that accompanies this 9 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, WITHOUT 13 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 15 **/ 16 17 #ifndef __VIRTIO_MMIO_TRANSPORT_H__ 18 #define __VIRTIO_MMIO_TRANSPORT_H__ 19 20 #define VIRTIO_MMIO_TRANSPORT_GUID \ 21 {0x837dca9e, 0xe874, 0x4d82, {0xb2, 0x9a, 0x23, 0xfe, 0x0e, 0x23, 0xd1, 0xe2}} 22 23 extern EFI_GUID gVirtioMmioTransportGuid; 24 25 #endif 26