hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @file
  Recommended GUID to be used in the Vendor Hardware device path nodes that
  identify virtio-mmio transports.
 
  Copyright (C) 2014, Red Hat, Inc.
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
 
**/
 
#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