diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-30 09:14:58 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-30 15:55:27 +0300 |
commit | d247568bb21b6665cc32dee8b0a9716d44bd11a7 (patch) | |
tree | 16b7ad502a3921d69b33d85006a6ee461945e899 /sound/soc/codecs/rt5677-spi.c | |
parent | 7d2ae58376658a3ca0d8f9a53f6f065df126c432 (diff) | |
download | linux-d247568bb21b6665cc32dee8b0a9716d44bd11a7.tar.xz |
ASoC: rt5677-spi: fixup compile warning
This patch fixup this warning
LINUX/sound/soc/codecs/rt5677-spi.c: In function ‘rt5677_spi_pcm_close’:
LINUX/sound/soc/codecs/rt5677-spi.c:114:30: warning: unused variable ‘rtd’ [-Wunused-variable]
struct snd_soc_pcm_runtime *rtd = substream->private_data;
^~~
Fixes: a0e0d135427c ("ASoC: rt5677: Add a PCM device for streaming hotword via SPI")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87a79idajh.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt5677-spi.c')
-rw-r--r-- | sound/soc/codecs/rt5677-spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5677-spi.c b/sound/soc/codecs/rt5677-spi.c index dac1097bc740..3aa3ea7c2768 100644 --- a/sound/soc/codecs/rt5677-spi.c +++ b/sound/soc/codecs/rt5677-spi.c @@ -111,7 +111,6 @@ static int rt5677_spi_pcm_close( struct snd_soc_component *component, struct snd_pcm_substream *substream) { - struct snd_soc_pcm_runtime *rtd = substream->private_data; struct rt5677_dsp *rt5677_dsp = snd_soc_component_get_drvdata(component); |