diff options
author | Takashi Iwai | 2022-07-15 20:24:27 +0200 |
---|---|---|
committer | Takashi Iwai | 2022-07-15 20:25:13 +0200 |
commit | d59d2277febbad93e42137a50673dd1c16199813 (patch) | |
tree | 3e6d9f5eee1b3d1a127b7f43ff3bef154ee00fa3 /sound/pci | |
parent | e7255c00b10e5e570dd8eb24f59e964eeec38d3b (diff) |
Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations"
Since the recent change in CS35L41 codec requires the reference of
acpi_dev handle, the current Kconfig may lead to a build breakage.
Revert the Kconfig change and re-introduce the hard dependency on
CONFIG_ACPI again as a temporary workaround.
Fixes: eef375960210 ("ALSA: hda: cs35l41: Support reading subsystem id from ACPI")
Link: https://lore.kernel.org/r/20220715182427.18891-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/Kconfig b/sound/pci/hda/Kconfig index 44c33bc0740e..a8e8cf98befa 100644 --- a/sound/pci/hda/Kconfig +++ b/sound/pci/hda/Kconfig @@ -103,7 +103,7 @@ config SND_HDA_CS_DSP_CONTROLS config SND_HDA_SCODEC_CS35L41_I2C tristate "Build CS35L41 HD-audio side codec support for I2C Bus" depends on I2C - depends on ACPI || COMPILE_TEST + depends on ACPI depends on SND_SOC select SND_SOC_CS35L41_LIB select SND_HDA_SCODEC_CS35L41 @@ -118,7 +118,7 @@ comment "Set to Y if you want auto-loading the side codec driver" config SND_HDA_SCODEC_CS35L41_SPI tristate "Build CS35L41 HD-audio codec support for SPI Bus" depends on SPI_MASTER - depends on ACPI || COMPILE_TEST + depends on ACPI depends on SND_SOC select SND_SOC_CS35L41_LIB select SND_HDA_SCODEC_CS35L41 |