| Submitter | fred.konrad@greensocs.com |
|---|---|
| Date | Jan. 7, 2013, 6:40 p.m. |
| Message ID | <1357584074-10852-32-git-send-email-fred.konrad@greensocs.com> |
| Download | mbox | patch |
| Permalink | /patch/210105/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/virtio-scsi.c b/hw/virtio-scsi.c index b2e0d70..273ca69 100644 --- a/hw/virtio-scsi.c +++ b/hw/virtio-scsi.c @@ -705,8 +705,6 @@ static int virtio_scsi_device_init(VirtIODevice *vdev) s->cmd_vqs = g_malloc0(s->conf.num_queues * sizeof(VirtQueue *)); - s->qdev = qdev; - /* TODO set up vdev function pointers */ vdev->get_config = virtio_scsi_get_config; vdev->set_config = virtio_scsi_set_config; diff --git a/hw/virtio-scsi.h b/hw/virtio-scsi.h index 50fa6c5..d945d4c 100644 --- a/hw/virtio-scsi.h +++ b/hw/virtio-scsi.h @@ -39,7 +39,6 @@ struct VirtIOSCSIConf { typedef struct { VirtIODevice parent_obj; - DeviceState *qdev; VirtIOSCSIConf conf; SCSIBus bus;