From 2274c319505fcbc5c922b67909d2ed0fd61b1de3 Mon Sep 17 00:00:00 2001 From: wangzhi16 Date: Fri, 25 Apr 2025 14:57:55 +0800 Subject: [PATCH] drivers/vhost: add missing SCHED_WORKQUEUE dependency The vhost driver uses work_queue() for deferred probe but was missing the SCHED_WORKQUEUE Kconfig dependency, causing link errors on boards that don't enable workqueue by default. Signed-off-by: wangzhi16 --- drivers/vhost/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/vhost/Kconfig b/drivers/vhost/Kconfig index a5c38735856..3622cc0e20b 100644 --- a/drivers/vhost/Kconfig +++ b/drivers/vhost/Kconfig @@ -6,6 +6,7 @@ config DRIVERS_VHOST bool select OPENAMP + select SCHED_WORKQUEUE default n config DRIVERS_VHOST_RNG