virtio_reset() expects a VirtIODevice pointer, which is what the single caller - virtio_bus_reset - pass. Promote the opaque argument to a plain VirtIODevice.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- include/hw/virtio/virtio.h | 2 +- hw/virtio/virtio.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h index 27cd98d2fe1..fcaa9b03b4a 100644 --- a/include/hw/virtio/virtio.h +++ b/include/hw/virtio/virtio.h @@ -370,7 +370,7 @@ void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector); int virtio_queue_set_host_notifier_mr(VirtIODevice *vdev, int n, MemoryRegion *mr, bool assign); int virtio_set_status(VirtIODevice *vdev, uint8_t val); -void virtio_reset(void *opaque); +void virtio_reset(VirtIODevice *vdev); void virtio_queue_reset(VirtIODevice *vdev, uint32_t queue_index); void virtio_queue_enable(VirtIODevice *vdev, uint32_t queue_index); void virtio_update_irq(VirtIODevice *vdev); diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 3dc9423eae9..86fc0e262f7 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -3233,9 +3233,8 @@ int virtio_set_features_ex(VirtIODevice *vdev, const uint64_t *features) return ret; } -void virtio_reset(void *opaque) +void virtio_reset(VirtIODevice *vdev) { - VirtIODevice *vdev = opaque; VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev); uint64_t features[VIRTIO_FEATURES_NU64S]; int i; -- 2.52.0
