VIRTIO_PCI is a hard dependency for CONFIG_VHOST_USER_SCSI; if virtio-pci is not included, linking fails due to missing virtio_pci_types_register. Adjust the Kconfig dependencies.
Signed-off-by: Paolo Bonzini <[email protected]> --- hw/scsi/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/scsi/Kconfig b/hw/scsi/Kconfig index 77d397c949..f972680ffc 100644 --- a/hw/scsi/Kconfig +++ b/hw/scsi/Kconfig @@ -50,6 +50,6 @@ config VIRTIO_SCSI config VHOST_USER_SCSI bool + default y # Only PCI devices are provided for now - default y if VIRTIO_PCI - depends on VIRTIO && VHOST_USER && LINUX + depends on VIRTIO_PCI && VHOST_USER && LINUX -- 2.33.1
