]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
virtio_ccw: support non-legacy balloon devices
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 15 Apr 2015 00:47:44 +0000 (10:17 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 15 Apr 2015 03:11:11 +0000 (12:41 +0930)
As of last patch, virtio_device_is_legacy_only is always false,
drop the test from virtio ccw.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (slight reword)
drivers/s390/kvm/virtio_ccw.c

index 71d7802aa8b48b75aee89ea2aae167436c746d65..6f1fa1773e76418ef3d55917fb3146875dd4f5b7 100644 (file)
@@ -1201,13 +1201,9 @@ static int virtio_ccw_online(struct ccw_device *cdev)
        vcdev->vdev.id.vendor = cdev->id.cu_type;
        vcdev->vdev.id.device = cdev->id.cu_model;
 
-       if (virtio_device_is_legacy_only(vcdev->vdev.id)) {
-               vcdev->revision = 0;
-       } else {
-               ret = virtio_ccw_set_transport_rev(vcdev);
-               if (ret)
-                       goto out_free;
-       }
+       ret = virtio_ccw_set_transport_rev(vcdev);
+       if (ret)
+               goto out_free;
 
        ret = register_virtio_device(&vcdev->vdev);
        if (ret) {