diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-14 14:09:09 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-18 09:39:57 +0100 |
commit | d6c1bd4a223776aaa6ef3845be12d3c7408b4ffb (patch) | |
tree | 4c6d73c8e0ad50e40640b07aa99398d2970d6bf8 /hw/net | |
parent | ca9b7e29de3e79d6fe21bfc21297770a98d54e58 (diff) | |
download | qemu-d6c1bd4a223776aaa6ef3845be12d3c7408b4ffb.zip qemu-d6c1bd4a223776aaa6ef3845be12d3c7408b4ffb.tar.gz qemu-d6c1bd4a223776aaa6ef3845be12d3c7408b4ffb.tar.bz2 |
kconfig: add dependencies on CONFIG_MSI_NONBROKEN
For devices that require msi_init/msix_init to succeed, add a
dependency on CONFIG_MSI_NONBROKEN. This will prevent those devices
from appearing in a binary that cannot instantiate them.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/net')
-rw-r--r-- | hw/net/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/net/Kconfig b/hw/net/Kconfig index c00ec03..7d7bbc5 100644 --- a/hw/net/Kconfig +++ b/hw/net/Kconfig @@ -28,7 +28,7 @@ config E1000_PCI config E1000E_PCI_EXPRESS bool default y if PCI_DEVICES - depends on PCI_EXPRESS + depends on PCI_EXPRESS && MSI_NONBROKEN config RTL8139_PCI bool @@ -107,7 +107,7 @@ config ETSEC config ROCKER bool default y if PCI_DEVICES - depends on PCI + depends on PCI && MSI_NONBROKEN config CAN_BUS bool |