diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2014-12-11 06:59:51 -0500 |
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-01-21 00:58:53 -0500 |
| commit | 1fcf0512c9c870e78e1c9898ecb9458593403466 (patch) | |
| tree | 002fa2a03688453e491f2224c31a96c1b3a47be6 /drivers/virtio/Makefile | |
| parent | 71d70c266c84c4e708bb36b20d0c0a29af42821c (diff) | |
virtio_pci: modern driver
Lightly tested against qemu.
One thing *not* implemented here is separate mappings
for descriptor/avail/used rings. That's nice to have,
will be done later after we have core support.
This also exposes the PCI layout to userspace, and
adds macros for PCI layout offsets:
QEMU wants it, so why not? Trust, but verify.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/virtio/Makefile')
| -rw-r--r-- | drivers/virtio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/virtio/Makefile b/drivers/virtio/Makefile index bf5104b56894..bd230d1c0533 100644 --- a/drivers/virtio/Makefile +++ b/drivers/virtio/Makefile | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | obj-$(CONFIG_VIRTIO) += virtio.o virtio_ring.o | 1 | obj-$(CONFIG_VIRTIO) += virtio.o virtio_ring.o |
| 2 | obj-$(CONFIG_VIRTIO_MMIO) += virtio_mmio.o | 2 | obj-$(CONFIG_VIRTIO_MMIO) += virtio_mmio.o |
| 3 | obj-$(CONFIG_VIRTIO_PCI) += virtio_pci.o | 3 | obj-$(CONFIG_VIRTIO_PCI) += virtio_pci.o |
| 4 | virtio_pci-y := virtio_pci_legacy.o virtio_pci_common.o | 4 | virtio_pci-y := virtio_pci_modern.o virtio_pci_legacy.o virtio_pci_common.o |
| 5 | obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o | 5 | obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o |
