summary refs log tree commit diff stats
path: root/hw/virtio/virtio-rng-pci.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2020-07-21 14:11:53 +0200
committerMichael S. Tsirkin <mst@redhat.com>2020-07-22 07:57:07 -0400
commitcf4e3d000e438d04077a56c401b41f3336a2a09d (patch)
treed32172230f69c1c30fa8749c6ca775762cd83d4d /hw/virtio/virtio-rng-pci.c
parentdba04c3488c4699f5afe96f66e448b1d447cf3fb (diff)
downloadfocaccia-qemu-cf4e3d000e438d04077a56c401b41f3336a2a09d.tar.gz
focaccia-qemu-cf4e3d000e438d04077a56c401b41f3336a2a09d.zip
virtio: Drop broken and superfluous object_property_set_link()
virtio_crypto_pci_realize() and copies the value of vcrypto->vdev's
property "cryptodev" to vcrypto's property:

    object_property_set_link(OBJECT(vrng), "rng", OBJECT(vrng->vdev.conf.rng),
                             NULL);

Since it does so only after realize, this always fails, but the error
is ignored.

It's actually superfluous: vcrypto's property is an alias of
vcrypto->vdev's property, created by virtio_instance_init_common().

Drop the call.

Same for virtio_ccw_crypto_realize(), virtio_rng_pci_realize(),
virtio_ccw_rng_realize().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20200721121153.1128844-1-armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/virtio-rng-pci.c')
-rw-r--r--hw/virtio/virtio-rng-pci.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/virtio/virtio-rng-pci.c b/hw/virtio/virtio-rng-pci.c
index 2f0b529b62..8afbb4c209 100644
--- a/hw/virtio/virtio-rng-pci.c
+++ b/hw/virtio/virtio-rng-pci.c
@@ -38,9 +38,6 @@ static void virtio_rng_pci_realize(VirtIOPCIProxy *vpci_dev, Error **errp)
     if (!qdev_realize(vdev, BUS(&vpci_dev->bus), errp)) {
         return;
     }
-
-    object_property_set_link(OBJECT(vrng), "rng", OBJECT(vrng->vdev.conf.rng),
-                             NULL);
 }
 
 static void virtio_rng_pci_class_init(ObjectClass *klass, void *data)