| Submitter | fred.konrad@greensocs.com |
|---|---|
| Date | Jan. 7, 2013, 6:40 p.m. |
| Message ID | <1357584074-10852-45-git-send-email-fred.konrad@greensocs.com> |
| Download | mbox | patch |
| Permalink | /patch/210054/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/virtio-rng.c b/hw/virtio-rng.c index 646bcf3..4e84f9e 100644 --- a/hw/virtio-rng.c +++ b/hw/virtio-rng.c @@ -176,7 +176,6 @@ static int virtio_rng_device_init(VirtIODevice *vdev) */ vrng->vdev.get_features = get_features; /**/ - vrng->qdev = qdev; assert(vrng->conf.max_bytes <= INT64_MAX); vrng->quota_remaining = vrng->conf.max_bytes; diff --git a/hw/virtio-rng.h b/hw/virtio-rng.h index fd6d01f..ae0c56da 100644 --- a/hw/virtio-rng.h +++ b/hw/virtio-rng.h @@ -32,8 +32,6 @@ struct VirtIORNGConf { typedef struct VirtIORNG { VirtIODevice vdev; - DeviceState *qdev; - /* Only one vq - guest puts buffer(s) on it when it needs entropy */ VirtQueue *vq;