On Wed, Apr 20, 2022 at 8:14 PM Paolo Bonzini <pbonz...@redhat.com> wrote:
> Since a sourceset already exists for this, avoid unnecessary repeat > of CONFIG_VIRTIO_PCI. > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > Reviewed-by: Marc-André Lureau <marcandre.lur...@redhat.com> > --- > hw/virtio/meson.build | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/hw/virtio/meson.build b/hw/virtio/meson.build > index 67dc77e00f..f371404b04 100644 > --- a/hw/virtio/meson.build > +++ b/hw/virtio/meson.build > @@ -16,9 +16,7 @@ virtio_ss.add(when: 'CONFIG_VHOST_USER', if_true: > files('vhost-user.c')) > virtio_ss.add(when: 'CONFIG_VHOST_VDPA', if_true: > files('vhost-shadow-virtqueue.c', 'vhost-vdpa.c')) > virtio_ss.add(when: 'CONFIG_VIRTIO_BALLOON', if_true: > files('virtio-balloon.c')) > virtio_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: > files('virtio-crypto.c')) > -virtio_ss.add(when: ['CONFIG_VIRTIO_CRYPTO', 'CONFIG_VIRTIO_PCI'], > if_true: files('virtio-crypto-pci.c')) > virtio_ss.add(when: 'CONFIG_VHOST_USER_FS', if_true: > files('vhost-user-fs.c')) > -virtio_ss.add(when: ['CONFIG_VHOST_USER_FS', 'CONFIG_VIRTIO_PCI'], > if_true: files('vhost-user-fs-pci.c')) > virtio_ss.add(when: 'CONFIG_VIRTIO_PMEM', if_true: files('virtio-pmem.c')) > virtio_ss.add(when: 'CONFIG_VHOST_VSOCK', if_true: files('vhost-vsock.c', > 'vhost-vsock-common.c')) > virtio_ss.add(when: 'CONFIG_VHOST_USER_VSOCK', if_true: > files('vhost-user-vsock.c', 'vhost-vsock-common.c')) > @@ -26,17 +24,20 @@ virtio_ss.add(when: 'CONFIG_VIRTIO_RNG', if_true: > files('virtio-rng.c')) > virtio_ss.add(when: 'CONFIG_VIRTIO_IOMMU', if_true: > files('virtio-iommu.c')) > virtio_ss.add(when: 'CONFIG_VIRTIO_MEM', if_true: files('virtio-mem.c')) > virtio_ss.add(when: 'CONFIG_VHOST_USER_I2C', if_true: > files('vhost-user-i2c.c')) > -virtio_ss.add(when: ['CONFIG_VIRTIO_PCI', 'CONFIG_VHOST_USER_I2C'], > if_true: files('vhost-user-i2c-pci.c')) > virtio_ss.add(when: 'CONFIG_VHOST_USER_RNG', if_true: > files('vhost-user-rng.c')) > -virtio_ss.add(when: ['CONFIG_VHOST_USER_RNG', 'CONFIG_VIRTIO_PCI'], > if_true: files('vhost-user-rng-pci.c')) > > virtio_pci_ss = ss.source_set() > virtio_pci_ss.add(when: 'CONFIG_VHOST_VSOCK', if_true: > files('vhost-vsock-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_VSOCK', if_true: > files('vhost-user-vsock-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_BLK', if_true: > files('vhost-user-blk-pci.c')) > +virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_I2C', if_true: > files('vhost-user-i2c-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_INPUT', if_true: > files('vhost-user-input-pci.c')) > +virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_RNG', if_true: > files('vhost-user-rng-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_SCSI', if_true: > files('vhost-user-scsi-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VHOST_SCSI', if_true: > files('vhost-scsi-pci.c')) > +virtio_pci_ss.add(when: 'CONFIG_VHOST_USER_FS', if_true: > files('vhost-user-fs-pci.c')) > + > +virtio_pci_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: > files('virtio-crypto-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VIRTIO_INPUT_HOST', if_true: > files('virtio-input-host-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VIRTIO_INPUT', if_true: > files('virtio-input-pci.c')) > virtio_pci_ss.add(when: 'CONFIG_VIRTIO_RNG', if_true: > files('virtio-rng-pci.c')) > -- > 2.35.1 > > > > -- Marc-André Lureau