summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/Include/Protocol
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2016-03-12 03:00:30 +0100
committerLaszlo Ersek <lersek@redhat.com>2016-04-06 13:04:03 +0200
commit235be6a0f197d6c103615ae2bf7b329ece890da1 (patch)
tree38ed6fe5cd3b2257458a392397f568b3e9dd1d79 /OvmfPkg/Include/Protocol
parentbc8fde6f62fd038e709b4981babda0f7c7ba8418 (diff)
downloadedk2-235be6a0f197d6c103615ae2bf7b329ece890da1.tar.gz
edk2-235be6a0f197d6c103615ae2bf7b329ece890da1.tar.bz2
edk2-235be6a0f197d6c103615ae2bf7b329ece890da1.zip
OvmfPkg: VIRTIO_DEVICE_PROTOCOL: remove GetQueueAddress() member
This function was never consumed by drivers, and the current prototype is unsupportable with virtio-1.0. Remove the function from the protocol definition, and drop the current (unused) implementations. Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Jordan Justen <jordan.l.justen@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'OvmfPkg/Include/Protocol')
-rw-r--r--OvmfPkg/Include/Protocol/VirtioDevice.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/OvmfPkg/Include/Protocol/VirtioDevice.h b/OvmfPkg/Include/Protocol/VirtioDevice.h
index 15750f450c..f8afa7120a 100644
--- a/OvmfPkg/Include/Protocol/VirtioDevice.h
+++ b/OvmfPkg/Include/Protocol/VirtioDevice.h
@@ -127,27 +127,6 @@ EFI_STATUS
);
/**
- Read the queue address field from the Virtio Header.
-
- QueueAddress is the address of the virtqueue divided by 4096.
-
- @param[in] This This instance of VIRTIO_DEVICE_PROTOCOL
-
- @param[out] QueueAddress The 32-bit queue address field.
-
- @retval EFI_SUCCESS The data was read successfully.
- @retval EFI_UNSUPPORTED The underlying IO device doesn't support the
- provided address offset and read size.
- @retval EFI_INVALID_PARAMETER QueueAddress is NULL
-**/
-typedef
-EFI_STATUS
-(EFIAPI *VIRTIO_GET_QUEUE_ADDRESS) (
- IN VIRTIO_DEVICE_PROTOCOL *This,
- OUT UINT32 *QueueAddress
- );
-
-/**
Write the queue address field in the Virtio Header.
The parameter Address must be the base address of the virtqueue divided
@@ -356,7 +335,6 @@ struct _VIRTIO_DEVICE_PROTOCOL {
VIRTIO_GET_DEVICE_FEATURES GetDeviceFeatures;
VIRTIO_SET_GUEST_FEATURES SetGuestFeatures;
- VIRTIO_GET_QUEUE_ADDRESS GetQueueAddress;
VIRTIO_SET_QUEUE_ADDRESS SetQueueAddress;
VIRTIO_SET_QUEUE_SEL SetQueueSel;