From: Thomas Huth Date: Fri, 13 Sep 2024 13:18:58 +0000 (+0200) Subject: hw/virtio/Kconfig: Include vhost-user-scmi only on arm targets X-Git-Tag: v9.2.0-rc0~75^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26111a30adac00c814af6672b8d99716949613e8;p=thirdparty%2Fqemu.git 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 Reviewed-by: Milan Zamazal Reviewed-by: Michael Tokarev Signed-off-by: Michael Tokarev --- diff --git a/hw/virtio/Kconfig b/hw/virtio/Kconfig index aa63ff7fd41..bea5be4d4a1 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