diff options
author | Bard Liao <yung-chuan.liao@linux.intel.com> | 2024-11-06 13:58:09 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-11-06 14:15:14 +0000 |
commit | b6bd3f3b6357f727a177f31861144788eceda3c1 (patch) | |
tree | feb3bf7fd11019105839959f6622fe54b047fa80 | |
parent | aaa73822bbf1912fb50ad21eb770258f7a84c6f7 (diff) | |
download | linux-stable-b6bd3f3b6357f727a177f31861144788eceda3c1.tar.gz linux-stable-b6bd3f3b6357f727a177f31861144788eceda3c1.tar.bz2 linux-stable-b6bd3f3b6357f727a177f31861144788eceda3c1.zip |
ASoC: Intel: Kconfig: make SND_SOC_ACPI_INTEL_MATCH depend on ACPI
SND_SOC_ACPI_INTEL_MATCH relies on ACPI functions. It will not work
if ACPI is not selected.
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Liam Girdwood <liam.r.girdwood@intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://patch.msgid.link/20241106055810.10123-2-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/intel/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig index 14461dee3e52..f644e9423428 100644 --- a/sound/soc/intel/Kconfig +++ b/sound/soc/intel/Kconfig @@ -70,7 +70,8 @@ if SND_SOC_INTEL_SST_TOPLEVEL || SND_SOC_SOF_INTEL_TOPLEVEL config SND_SOC_ACPI_INTEL_MATCH tristate - select SND_SOC_ACPI if ACPI + depends on ACPI + select SND_SOC_ACPI select SND_SOC_ACPI_INTEL_SDCA_QUIRKS # this option controls the compilation of ACPI matching tables and # helpers and is not meant to be selected by the user. |