aboutsummaryrefslogtreecommitdiff
path: root/hw/input
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2019-12-09 11:55:10 -0500
committerMichael S. Tsirkin <mst@redhat.com>2020-01-05 07:03:03 -0500
commit087ed8a5827d10cd346ba5fa89845f14b9dff377 (patch)
tree2416927299604506b55e761ebca5992a6e6f1398 /hw/input
parente615c157f3d27ab42affba9046ae426a83f29874 (diff)
downloadqemu-087ed8a5827d10cd346ba5fa89845f14b9dff377.zip
qemu-087ed8a5827d10cd346ba5fa89845f14b9dff377.tar.gz
qemu-087ed8a5827d10cd346ba5fa89845f14b9dff377.tar.bz2
virtio-input: convert to new virtio_delete_queue
Seems cleaner than using VQ index values. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/input')
-rw-r--r--hw/input/virtio-input.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c
index ec54e46..9c013af 100644
--- a/hw/input/virtio-input.c
+++ b/hw/input/virtio-input.c
@@ -280,6 +280,7 @@ static void virtio_input_device_unrealize(DeviceState *dev, Error **errp)
{
VirtIOInputClass *vic = VIRTIO_INPUT_GET_CLASS(dev);
VirtIODevice *vdev = VIRTIO_DEVICE(dev);
+ VirtIOInput *vinput = VIRTIO_INPUT(dev);
Error *local_err = NULL;
if (vic->unrealize) {
@@ -289,8 +290,8 @@ static void virtio_input_device_unrealize(DeviceState *dev, Error **errp)
return;
}
}
- virtio_del_queue(vdev, 0);
- virtio_del_queue(vdev, 1);
+ virtio_delete_queue(vinput->evt);
+ virtio_delete_queue(vinput->sts);
virtio_cleanup(vdev);
}