mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
5f4c976089
kbuild does not seem to like it when we name source files same as the module. Let's rename virtio_pci -> virtio_pci_common, and get rid of #include-ing c files. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
6 lines
236 B
Makefile
6 lines
236 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_legacy.o virtio_pci_common.o
|
|
obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o
|