diff options
-rw-r--r-- | drivers/virtio/virtio.c | 6 | ||||
-rw-r--r-- | include/linux/virtio.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/drivers/virtio/virtio.c b/drivers/virtio/virtio.c index 5fa67b5282ad..b1877d73fa56 100644 --- a/drivers/virtio/virtio.c +++ b/drivers/virtio/virtio.c | |||
@@ -278,12 +278,6 @@ static struct bus_type virtio_bus = { | |||
278 | .remove = virtio_dev_remove, | 278 | .remove = virtio_dev_remove, |
279 | }; | 279 | }; |
280 | 280 | ||
281 | bool virtio_device_is_legacy_only(struct virtio_device_id id) | ||
282 | { | ||
283 | return false; | ||
284 | } | ||
285 | EXPORT_SYMBOL_GPL(virtio_device_is_legacy_only); | ||
286 | |||
287 | int register_virtio_driver(struct virtio_driver *driver) | 281 | int register_virtio_driver(struct virtio_driver *driver) |
288 | { | 282 | { |
289 | /* Catch this early. */ | 283 | /* Catch this early. */ |
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index 28f0e65b9a11..8f4d4bfa6d46 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h | |||
@@ -108,8 +108,6 @@ struct virtio_device { | |||
108 | void *priv; | 108 | void *priv; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | bool virtio_device_is_legacy_only(struct virtio_device_id id); | ||
112 | |||
113 | static inline struct virtio_device *dev_to_virtio(struct device *_dev) | 111 | static inline struct virtio_device *dev_to_virtio(struct device *_dev) |
114 | { | 112 | { |
115 | return container_of(_dev, struct virtio_device, dev); | 113 | return container_of(_dev, struct virtio_device, dev); |