Commit c5036b86 authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Mark Brown

ASoC: jz4760: fix set but not used warning

make W=1 warning:

sound/soc/codecs/jz4760.c: In function ‘jz4760_codec_startup’:
sound/soc/codecs/jz4760.c:201:6: error: variable ‘ret’ set but not
used [-Werror=unused-but-set-variable]
  201 |  int ret;
      |      ^~~
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20210302205926.49063-3-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 80cd7309
...@@ -198,7 +198,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream, ...@@ -198,7 +198,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream,
{ {
struct snd_soc_component *codec = dai->component; struct snd_soc_component *codec = dai->component;
struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(codec); struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(codec);
int ret; int ret = 0;
/* /*
* SYSCLK output from the codec to the AIC is required to keep the * SYSCLK output from the codec to the AIC is required to keep the
...@@ -207,7 +207,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream, ...@@ -207,7 +207,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream,
*/ */
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
ret = snd_soc_dapm_force_enable_pin(dapm, "SYSCLK"); ret = snd_soc_dapm_force_enable_pin(dapm, "SYSCLK");
return 0; return ret;
} }
static void jz4760_codec_shutdown(struct snd_pcm_substream *substream, static void jz4760_codec_shutdown(struct snd_pcm_substream *substream,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment