virtio: drop legacy_only driver flag
[cascardo/linux.git] / drivers / virtio / virtio.c
index e1673a5..f226658 100644 (file)
@@ -198,10 +198,6 @@ static int virtio_dev_probe(struct device *_d)
                driver_features_legacy = driver_features;
        }
 
-       /* Detect legacy-only drivers and disable VIRTIO_F_VERSION_1. */
-       if (drv->legacy_only)
-               device_features &= ~(1ULL << VIRTIO_F_VERSION_1);
-
        if (device_features & (1ULL << VIRTIO_F_VERSION_1))
                dev->features = driver_features & device_features;
        else