diff options
| author | Michael S. Tsirkin <[email protected]> | 2015-04-15 10:17:44 +0930 |
|---|---|---|
| committer | Rusty Russell <[email protected]> | 2015-04-15 12:41:11 +0930 |
| commit | 2343dabc6096486b2705ab9420dd292801fc47f3 (patch) | |
| tree | db4c8dd127d1229d5670058e68614a87e0b11cac | |
| parent | df81b29c7b81b9d70ee29b7a263dd5009daa0ce4 (diff) | |
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: Michael S. Tsirkin <[email protected]>
Reviewed-by: Cornelia Huck <[email protected]>
Signed-off-by: Rusty Russell <[email protected]>
| -rw-r--r-- | drivers/virtio/virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/virtio/virtio.c b/drivers/virtio/virtio.c index 5ce2aa48fc6e..5fa67b5282ad 100644 --- a/drivers/virtio/virtio.c +++ b/drivers/virtio/virtio.c @@ -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); |