forked from Minki/linux
7bbdda8009
The probe debug functionality is implemented via compress support and it was spread across two set of files: probe.c/h compress.c/h Merge the two files into sof-probes.s/h and clean them up by removing unused struct definitions, functions. We can also move most of the functions static as they are only used internally. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/20210916103211.1573-5-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
25 lines
761 B
Makefile
25 lines
761 B
Makefile
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
|
|
snd-sof-objs := core.o ops.o loader.o ipc.o pcm.o pm.o debug.o topology.o\
|
|
control.o trace.o utils.o sof-audio.o
|
|
|
|
snd-sof-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += sof-probes.o
|
|
|
|
snd-sof-pci-objs := sof-pci-dev.o
|
|
snd-sof-acpi-objs := sof-acpi-dev.o
|
|
snd-sof-of-objs := sof-of-dev.o
|
|
|
|
snd-sof-nocodec-objs := nocodec.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF) += snd-sof.o
|
|
obj-$(CONFIG_SND_SOC_SOF_NOCODEC) += snd-sof-nocodec.o
|
|
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_ACPI_DEV) += snd-sof-acpi.o
|
|
obj-$(CONFIG_SND_SOC_SOF_OF) += snd-sof-of.o
|
|
obj-$(CONFIG_SND_SOC_SOF_PCI_DEV) += snd-sof-pci.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL) += intel/
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX_TOPLEVEL) += imx/
|
|
obj-$(CONFIG_SND_SOC_SOF_XTENSA) += xtensa/
|