From 2318f37545dc9dee0d2f24d02b99f6dd856ce017 Mon Sep 17 00:00:00 2001 From: Daniel Baluta Date: Mon, 18 Jan 2021 11:10:48 +0200 Subject: [PATCH] LF-3665-1 ASoC: SOF: Rename compress.c -> probe_compress.c This will help separate compress probe helpers functions from compress audio implementation that will follow in the next patches. Signed-off-by: Daniel Baluta --- sound/soc/sof/Makefile | 2 +- sound/soc/sof/intel/hda-dai.c | 2 +- sound/soc/sof/pcm.c | 2 +- sound/soc/sof/{compress.c => probe_compress.c} | 2 +- sound/soc/sof/{compress.h => probe_compress.h} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename sound/soc/sof/{compress.c => probe_compress.c} (99%) rename sound/soc/sof/{compress.h => probe_compress.h} (100%) diff --git a/sound/soc/sof/Makefile b/sound/soc/sof/Makefile index 05718dfe6cd2..c0b0b8b9e26d 100644 --- a/sound/soc/sof/Makefile +++ b/sound/soc/sof/Makefile @@ -2,7 +2,7 @@ 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) += probe.o probe_compress.o snd-sof-pci-objs := sof-pci-dev.o snd-sof-acpi-objs := sof-acpi-dev.o diff --git a/sound/soc/sof/intel/hda-dai.c b/sound/soc/sof/intel/hda-dai.c index c6cb8c212eca..66cdf96062f0 100644 --- a/sound/soc/sof/intel/hda-dai.c +++ b/sound/soc/sof/intel/hda-dai.c @@ -401,7 +401,7 @@ static const struct snd_soc_dai_ops hda_link_dai_ops = { }; #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA_PROBES) -#include "../compress.h" +#include "../probe_compress.h" static struct snd_soc_cdai_ops sof_probe_compr_ops = { .startup = sof_probe_compr_open, diff --git a/sound/soc/sof/pcm.c b/sound/soc/sof/pcm.c index c11881f48ab3..40ae0b03f0db 100644 --- a/sound/soc/sof/pcm.c +++ b/sound/soc/sof/pcm.c @@ -17,7 +17,7 @@ #include "sof-audio.h" #include "ops.h" #if IS_ENABLED(CONFIG_SND_SOC_SOF_DEBUG_PROBES) -#include "compress.h" +#include "probe_compress.h" #endif /* Create DMA buffer page table for DSP */ diff --git a/sound/soc/sof/compress.c b/sound/soc/sof/probe_compress.c similarity index 99% rename from sound/soc/sof/compress.c rename to sound/soc/sof/probe_compress.c index 2d4969c705a4..09c20ce12cff 100644 --- a/sound/soc/sof/compress.c +++ b/sound/soc/sof/probe_compress.c @@ -9,7 +9,7 @@ // #include -#include "compress.h" +#include "probe_compress.h" #include "ops.h" #include "probe.h" diff --git a/sound/soc/sof/compress.h b/sound/soc/sof/probe_compress.h similarity index 100% rename from sound/soc/sof/compress.h rename to sound/soc/sof/probe_compress.h -- 2.17.1