diff options
| author | Gustavo A. R. Silva <[email protected]> | 2017-11-08 14:04:12 -0600 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2017-11-08 21:28:01 +0000 |
| commit | a47043ec35d4198b3858cb1eb4c38d712154ae99 (patch) | |
| tree | 6b1563c6c7423a278ff2125de3afab523cf175b3 | |
| parent | dc10622bb32f08383cf5a9942a91042d8f38bf3d (diff) | |
ASoC: tlv320aic23: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 146566
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/codecs/tlv320aic23.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/tlv320aic23.c b/sound/soc/codecs/tlv320aic23.c index 3d42138a7974..74909211c608 100644 --- a/sound/soc/codecs/tlv320aic23.c +++ b/sound/soc/codecs/tlv320aic23.c @@ -454,6 +454,7 @@ static int tlv320aic23_set_dai_fmt(struct snd_soc_dai *codec_dai, break; case SND_SOC_DAIFMT_DSP_A: iface_reg |= TLV320AIC23_LRP_ON; + /* fall through */ case SND_SOC_DAIFMT_DSP_B: iface_reg |= TLV320AIC23_FOR_DSP; break; |