mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-28 14:00:44 +00:00
virtio-scsi: Replace HandleOutput typedef
There is a new common one in virtio.h, use it. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
d4a92a8420
commit
209b27bbe9
@ -824,8 +824,9 @@ static struct SCSIBusInfo virtio_scsi_scsi_info = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void virtio_scsi_common_realize(DeviceState *dev, Error **errp,
|
void virtio_scsi_common_realize(DeviceState *dev, Error **errp,
|
||||||
HandleOutput ctrl, HandleOutput evt,
|
VirtIOHandleOutput ctrl,
|
||||||
HandleOutput cmd)
|
VirtIOHandleOutput evt,
|
||||||
|
VirtIOHandleOutput cmd)
|
||||||
{
|
{
|
||||||
VirtIODevice *vdev = VIRTIO_DEVICE(dev);
|
VirtIODevice *vdev = VIRTIO_DEVICE(dev);
|
||||||
VirtIOSCSICommon *s = VIRTIO_SCSI_COMMON(dev);
|
VirtIOSCSICommon *s = VIRTIO_SCSI_COMMON(dev);
|
||||||
|
@ -121,11 +121,9 @@ typedef struct VirtIOSCSIReq {
|
|||||||
} req;
|
} req;
|
||||||
} VirtIOSCSIReq;
|
} VirtIOSCSIReq;
|
||||||
|
|
||||||
typedef void (*HandleOutput)(VirtIODevice *, VirtQueue *);
|
|
||||||
|
|
||||||
void virtio_scsi_common_realize(DeviceState *dev, Error **errp,
|
void virtio_scsi_common_realize(DeviceState *dev, Error **errp,
|
||||||
HandleOutput ctrl, HandleOutput evt,
|
VirtIOHandleOutput ctrl, VirtIOHandleOutput evt,
|
||||||
HandleOutput cmd);
|
VirtIOHandleOutput cmd);
|
||||||
|
|
||||||
void virtio_scsi_common_unrealize(DeviceState *dev, Error **errp);
|
void virtio_scsi_common_unrealize(DeviceState *dev, Error **errp);
|
||||||
void virtio_scsi_handle_event_vq(VirtIOSCSI *s, VirtQueue *vq);
|
void virtio_scsi_handle_event_vq(VirtIOSCSI *s, VirtQueue *vq);
|
||||||
|
Loading…
Reference in New Issue
Block a user