diff options
author | Olivier Martin <olivier.martin@arm.com> | 2013-12-11 16:58:30 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-12-11 16:58:30 +0000 |
commit | 64106abf4b702f1fb583740ecaa0885a31b18b0e (patch) | |
tree | 4d3a39c7123ae5964e922cb1c8a9858477a25389 /OvmfPkg | |
parent | 56f65ed838e8d73e91d54a8ed984d777c936843c (diff) | |
download | edk2-platforms-64106abf4b702f1fb583740ecaa0885a31b18b0e.tar.xz |
OvmfPkg/Virtio.h: Removed definition of VIRTIO_HDR
This definition is specific to VirtIo over PCI.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14967 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg')
-rw-r--r-- | OvmfPkg/Include/IndustryStandard/Virtio.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/OvmfPkg/Include/IndustryStandard/Virtio.h b/OvmfPkg/Include/IndustryStandard/Virtio.h index 9b97e6db2f..fcf7b67431 100644 --- a/OvmfPkg/Include/IndustryStandard/Virtio.h +++ b/OvmfPkg/Include/IndustryStandard/Virtio.h @@ -156,24 +156,6 @@ typedef struct { UINT16 QueueSize;
} VRING;
-
-//
-// virtio-0.9.5, 2.2.2 Virtio Header -- no MSI-X
-//
-#pragma pack(1)
-typedef struct {
- UINT32 VhdrDeviceFeatureBits;
- UINT32 VhdrGuestFeatureBits;
- UINT32 VhdrQueueAddress;
- UINT16 VhdrQueueSize;
- UINT16 VhdrQueueSelect;
- UINT16 VhdrQueueNotify;
- UINT8 VhdrDeviceStatus;
- UINT8 VhdrISR;
-} VIRTIO_HDR;
-#pragma pack()
-
-
//
// virtio-0.9.5, 2.2.2.1 Device Status
//
|