From f4cb487b79f9c071351fdabdd3ded30cbb1c7513 Mon Sep 17 00:00:00 2001 From: Flavio Ceolin Date: Wed, 10 May 2023 22:10:43 +0000 Subject: [PATCH] modules: sof: Options only when module is available Only show sof menu options when the module is available. Signed-off-by: Flavio Ceolin --- modules/Kconfig.sof | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/Kconfig.sof b/modules/Kconfig.sof index 17e40df34b5..4a0b9418660 100644 --- a/modules/Kconfig.sof +++ b/modules/Kconfig.sof @@ -1,7 +1,11 @@ # Copyright (c) 2020 Intel Corporation # SPDX-License-Identifier: Apache-2.0 +config ZEPHYR_SOF_MODULE + bool + config SOF bool "Sound Open Firmware (SOF)" + depends on ZEPHYR_SOF_MODULE help Build Sound Open Firmware (SOF) support.