From: Takashi Iwai Date: Thu, 7 Nov 2019 13:48:33 +0000 (+0100) Subject: ASoC: core: Fix compile warning with CONFIG_DEBUG_FS=n X-Git-Tag: v5.4.13~145 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=906ed10bc6871edc35c57a78e3a1da9dcb734545;p=thirdparty%2Fkernel%2Fstable.git ASoC: core: Fix compile warning with CONFIG_DEBUG_FS=n commit bd0b609e0c3362cb167c51d4bd4330d79fc00987 upstream. Paper over a compile warning: sound/soc/soc-pcm.c:1185:8: warning: unused variable ‘name’ Fixes: 0632fa042541 ("ASoC: core: Fix pcm code debugfs error") Signed-off-by: Takashi Iwai Link: https://lore.kernel.org/r/20191107134833.1502-1-tiwai@suse.de Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index a6e96cf1d8ff9..d07026a846b9c 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -1148,7 +1148,9 @@ static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe, { struct snd_soc_dpcm *dpcm; unsigned long flags; +#ifdef CONFIG_DEBUG_FS char *name; +#endif /* only add new dpcms */ for_each_dpcm_be(fe, stream, dpcm) {