mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 21:33:00 +00:00
1fcf0512c9
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>
6 lines
256 B
Makefile
6 lines
256 B
Makefile
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
|
|
obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o
|