diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-08-01 14:54:03 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-08-02 10:46:13 +0100 |
commit | a9531ab151117e976544e0dc74a9bc8cbd01145f (patch) | |
tree | 55b076819075de309d68b28c35899efb83045b81 /sound/soc/codecs | |
parent | 42ef3c94ff6e8315377c04504f1bce50d1f21738 (diff) | |
download | linux-stable-a9531ab151117e976544e0dc74a9bc8cbd01145f.tar.gz linux-stable-a9531ab151117e976544e0dc74a9bc8cbd01145f.tar.bz2 linux-stable-a9531ab151117e976544e0dc74a9bc8cbd01145f.zip |
ASoC: wm8962: Mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 115043 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r-- | sound/soc/codecs/wm8962.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index a11e9d6bf950..efd8910b1ff7 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c @@ -2649,6 +2649,7 @@ static int wm8962_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { case SND_SOC_DAIFMT_DSP_B: aif0 |= WM8962_LRCLK_INV | 3; + /* fall through */ case SND_SOC_DAIFMT_DSP_A: aif0 |= 3; |