diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-08-01 22:51:18 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-08-02 12:46:10 +0300 |
commit | 85e7e77079f3201799467803f6c8533a9921e32d (patch) | |
tree | 4a48003dc983fa94ce0812f99aacadbe899fd386 /sound | |
parent | 43a26bd026dab09a8b28c40e94ba534a52375b20 (diff) | |
download | linux-85e7e77079f3201799467803f6c8533a9921e32d.tar.xz |
ASoC: wm8955: Mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 115047 ("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')
-rw-r--r-- | sound/soc/codecs/wm8955.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8955.c b/sound/soc/codecs/wm8955.c index ba44e3d6c1e0..cd204f79647d 100644 --- a/sound/soc/codecs/wm8955.c +++ b/sound/soc/codecs/wm8955.c @@ -686,6 +686,7 @@ static int wm8955_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { case SND_SOC_DAIFMT_DSP_B: aif |= WM8955_LRP; + /* fall through */ case SND_SOC_DAIFMT_DSP_A: aif |= 0x3; break; |