forked from Minki/linux
c435c54639
The current contents of vfio-pci-zdev are today only useful in a KVM environment; let's tie everything currently under vfio-pci-zdev to this Kconfig statement and require KVM in this case, reducing complexity (e.g. symbol lookups). Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com> Acked-by: Alex Williamson <alex.williamson@redhat.com> Reviewed-by: Pierre Morel <pmorel@linux.ibm.com> Link: https://lore.kernel.org/r/20220606203325.110625-11-mjrosato@linux.ibm.com Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
14 lines
443 B
Makefile
14 lines
443 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
vfio-pci-core-y := vfio_pci_core.o vfio_pci_intrs.o vfio_pci_rdwr.o vfio_pci_config.o
|
|
vfio-pci-core-$(CONFIG_VFIO_PCI_ZDEV_KVM) += vfio_pci_zdev.o
|
|
obj-$(CONFIG_VFIO_PCI_CORE) += vfio-pci-core.o
|
|
|
|
vfio-pci-y := vfio_pci.o
|
|
vfio-pci-$(CONFIG_VFIO_PCI_IGD) += vfio_pci_igd.o
|
|
obj-$(CONFIG_VFIO_PCI) += vfio-pci.o
|
|
|
|
obj-$(CONFIG_MLX5_VFIO_PCI) += mlx5/
|
|
|
|
obj-$(CONFIG_HISI_ACC_VFIO_PCI) += hisilicon/
|