diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2023-05-23 11:43:37 +0900 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2023-05-23 15:20:15 +0800 |
commit | 9472640633494af67a418e6258e9b2941db1f5c1 (patch) | |
tree | ffda353491bd9f4daa200ac471855b0b3da2595d | |
parent | efb1fd7a73aac29b02514c8aa46b752a7c7caa73 (diff) | |
download | qemu-9472640633494af67a418e6258e9b2941db1f5c1.zip qemu-9472640633494af67a418e6258e9b2941db1f5c1.tar.gz qemu-9472640633494af67a418e6258e9b2941db1f5c1.tar.bz2 |
vmxnet3: Do not depend on PC
vmxnet3 has no dependency on PC, and VMware Fusion actually makes it
available on Apple Silicon according to:
https://kb.vmware.com/s/article/90364
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
-rw-r--r-- | hw/net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/Kconfig b/hw/net/Kconfig index 18c7851..98e00be 100644 --- a/hw/net/Kconfig +++ b/hw/net/Kconfig @@ -56,7 +56,7 @@ config RTL8139_PCI config VMXNET3_PCI bool - default y if PCI_DEVICES && PC_PCI + default y if PCI_DEVICES depends on PCI config SMC91C111 |