aboutsummaryrefslogtreecommitdiff
path: root/hw/scsi/vhost-user-scsi.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-07-17 11:46:50 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2019-07-19 19:04:38 +0200
commit12e1dc49395674960efec967ca4161428c08307a (patch)
tree5a687783c9c97def5d58183d6c6b8850032a99f6 /hw/scsi/vhost-user-scsi.c
parent1e44f3ab71fb4291d266a264f7c207ae5c6d59b2 (diff)
downloadqemu-12e1dc49395674960efec967ca4161428c08307a.zip
qemu-12e1dc49395674960efec967ca4161428c08307a.tar.gz
qemu-12e1dc49395674960efec967ca4161428c08307a.tar.bz2
virtio-scsi: remove unused argument to virtio_scsi_common_realize
The argument is not used and passing it clutters error propagation in the callers. So, get rid of it. Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/scsi/vhost-user-scsi.c')
-rw-r--r--hw/scsi/vhost-user-scsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c
index a9fd8ea..a0b69fb 100644
--- a/hw/scsi/vhost-user-scsi.c
+++ b/hw/scsi/vhost-user-scsi.c
@@ -125,7 +125,7 @@ static void vhost_user_scsi_unrealize(DeviceState *dev, Error **errp)
vhost_dev_cleanup(&vsc->dev);
g_free(vqs);
- virtio_scsi_common_unrealize(dev, errp);
+ virtio_scsi_common_unrealize(dev);
vhost_user_cleanup(&s->vhost_user);
}