diff options
author | Gustavo A. R. Silva <garsilva@embeddedor.com> | 2017-11-08 14:04:17 -0600 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-08 21:28:06 +0000 |
commit | 09fc38c1af4cb888255e9ecf267bf9757c12885d (patch) | |
tree | 2d9373ffdee43d2a6bd7e4d22cc54f0679504415 /sound/soc | |
parent | a47043ec35d4198b3858cb1eb4c38d712154ae99 (diff) | |
download | linux-09fc38c1af4cb888255e9ecf267bf9757c12885d.tar.bz2 |
ASoC: tlv320dac31xx: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 1195220
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/tlv320aic31xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index 54a87a905eb6..e2862372c26e 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c @@ -929,7 +929,7 @@ static int aic31xx_set_dai_fmt(struct snd_soc_dai *codec_dai, case SND_SOC_DAIFMT_I2S: break; case SND_SOC_DAIFMT_DSP_A: - dsp_a_val = 0x1; + dsp_a_val = 0x1; /* fall through */ case SND_SOC_DAIFMT_DSP_B: /* NOTE: BCLKINV bit value 1 equas NB and 0 equals IB */ switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |