mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 16:35:34 +07:00
dc901a3541
The commit 95f0980148
"ASoC: Intel: Move apci find machine routines"
introduced a regression in ACPI probe of the DPCM driver.
Fix by conditionally compiling sst-acpi when the DPCM driver
is not selected
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
14 lines
400 B
Makefile
14 lines
400 B
Makefile
snd-soc-sst-dsp-objs := sst-dsp.o
|
|
ifneq ($(CONFIG_SND_SST_IPC_ACPI),)
|
|
snd-soc-sst-acpi-objs := sst-match-acpi.o
|
|
else
|
|
snd-soc-sst-acpi-objs := sst-acpi.o sst-match-acpi.o
|
|
endif
|
|
|
|
snd-soc-sst-ipc-objs := sst-ipc.o
|
|
|
|
snd-soc-sst-dsp-$(CONFIG_DW_DMAC_CORE) += sst-firmware.o
|
|
|
|
obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o snd-soc-sst-ipc.o
|
|
obj-$(CONFIG_SND_SOC_INTEL_SST_ACPI) += snd-soc-sst-acpi.o
|