aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-09-13 15:18:58 +0200
committerMichael Tokarev <mjt@tls.msk.ru>2024-09-20 08:06:57 +0300
commit26111a30adac00c814af6672b8d99716949613e8 (patch)
treed5da1af23f8c94821b8ffe67e15b919fdd11a38f
parent81b72ee66a69d433a57fb7674ca5a3f8f0a2ef33 (diff)
downloadqemu-26111a30adac00c814af6672b8d99716949613e8.zip
qemu-26111a30adac00c814af6672b8d99716949613e8.tar.gz
qemu-26111a30adac00c814af6672b8d99716949613e8.tar.bz2
hw/virtio/Kconfig: Include vhost-user-scmi only on arm targets
The System Control and Management Interface is specific to arm machines, so don't include this device in non-arm targets. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--hw/virtio/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/Kconfig b/hw/virtio/Kconfig
index aa63ff7..bea5be4 100644
--- a/hw/virtio/Kconfig
+++ b/hw/virtio/Kconfig
@@ -109,4 +109,4 @@ config VHOST_USER_SND
config VHOST_USER_SCMI
bool
default y
- depends on VIRTIO && VHOST_USER
+ depends on VIRTIO && VHOST_USER && ARM