diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2023-06-14 21:39:47 +0200 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2023-06-16 20:23:50 +0200 |
commit | 8bee6f00fce25e7a0db85cbb52b19d729d28273e (patch) | |
tree | 5a4f51d1a7064415c0d3a92f199a5800f1c8b44e /drivers/vfio/Makefile | |
parent | vfio/pci: Cleanup Kconfig (diff) | |
download | linux-8bee6f00fce25e7a0db85cbb52b19d729d28273e.tar.xz linux-8bee6f00fce25e7a0db85cbb52b19d729d28273e.zip |
vfio/platform: Cleanup Kconfig
Like vfio-pci, there's also a base module here where vfio-amba depends on
vfio-platform, when really it only needs vfio-platform-base. Create a
sub-menu for platform drivers and a nested menu for reset drivers. Cleanup
Makefile to make use of new CONFIG_VFIO_PLATFORM_BASE for building the
shared modules and traversing reset modules.
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Link: https://lore.kernel.org/r/20230614193948.477036-3-alex.williamson@redhat.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/Makefile')
-rw-r--r-- | drivers/vfio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vfio/Makefile b/drivers/vfio/Makefile index 151e816b2ff9..8da44aa1ea16 100644 --- a/drivers/vfio/Makefile +++ b/drivers/vfio/Makefile @@ -11,6 +11,6 @@ vfio-$(CONFIG_VFIO_VIRQFD) += virqfd.o obj-$(CONFIG_VFIO_IOMMU_TYPE1) += vfio_iommu_type1.o obj-$(CONFIG_VFIO_IOMMU_SPAPR_TCE) += vfio_iommu_spapr_tce.o obj-$(CONFIG_VFIO_PCI_CORE) += pci/ -obj-$(CONFIG_VFIO_PLATFORM) += platform/ +obj-$(CONFIG_VFIO_PLATFORM_BASE) += platform/ obj-$(CONFIG_VFIO_MDEV) += mdev/ obj-$(CONFIG_VFIO_FSL_MC) += fsl-mc/ |