diff options
author | Peter Ujfalusi <peter.ujfalusi@linux.intel.com> | 2021-09-16 13:32:09 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-09-16 14:04:13 +0100 |
commit | 7bbdda8009001d66611314e67a3f498d4b412c64 (patch) | |
tree | e4a6755e3fdd8176cc951bed01a2f87b2ed34d7f /sound/soc/sof/Makefile | |
parent | 2dc51106ccc6c64b9ea68ddd9ec533f7e67e081d (diff) | |
download | lwn-7bbdda8009001d66611314e67a3f498d4b412c64.tar.gz lwn-7bbdda8009001d66611314e67a3f498d4b412c64.zip |
ASoC: SOF: probe: Merge and clean up the probe and compress files
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>
Diffstat (limited to 'sound/soc/sof/Makefile')
-rw-r--r-- | sound/soc/sof/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/sof/Makefile b/sound/soc/sof/Makefile index 606d8137cd98..bdea0faac117 100644 --- a/sound/soc/sof/Makefile +++ b/sound/soc/sof/Makefile @@ -2,7 +2,8 @@ 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) += probe.o compress.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 |