diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-01-15 16:06:26 +0200 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-01-21 16:28:59 +1030 |
commit | 46506da5f365efe7fe3e4c9da73ab679c0382fac (patch) | |
tree | e8f11e77b344a635815b60968f4f694d3f60af93 /drivers/virtio/Makefile | |
parent | 0327642337fee1dba50fa4d9a45d3a8b8fb2d1c3 (diff) | |
download | linux-46506da5f365efe7fe3e4c9da73ab679c0382fac.tar.bz2 |
virtio_pci: add an option to disable legacy driver
Useful for testing device virtio 1 compatibility.
Based on patch by Rusty - couldn't resist putting
that flying car joke in there!
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/virtio/Makefile')
-rw-r--r-- | drivers/virtio/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/virtio/Makefile b/drivers/virtio/Makefile index bd230d1c0533..d85565b8ea46 100644 --- a/drivers/virtio/Makefile +++ b/drivers/virtio/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_VIRTIO) += virtio.o virtio_ring.o obj-$(CONFIG_VIRTIO_MMIO) += virtio_mmio.o obj-$(CONFIG_VIRTIO_PCI) += virtio_pci.o -virtio_pci-y := virtio_pci_modern.o virtio_pci_legacy.o virtio_pci_common.o +virtio_pci-y := virtio_pci_modern.o virtio_pci_common.o +virtio_pci-$(CONFIG_VIRTIO_PCI_LEGACY) += virtio_pci_legacy.o obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o |