Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2343dabc authored by Michael S. Tsirkin's avatar Michael S. Tsirkin Committed by Rusty Russell
Browse files

virtio: balloon might not be a legacy device



We added transitional device support to balloon driver,
so we don't need to black-list it in core anymore.

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Reviewed-by: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent df81b29c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ static struct bus_type virtio_bus = {

bool virtio_device_is_legacy_only(struct virtio_device_id id)
{
	return id.device == VIRTIO_ID_BALLOON;
	return false;
}
EXPORT_SYMBOL_GPL(virtio_device_is_legacy_only);