diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-11-20 19:23:50 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-20 20:28:34 +0100 |
commit | 3371c6f9f4115d8949e093be8299a9c1ebe29137 (patch) | |
tree | 2a82019d7bf465be0d3169d22e9b905c136fdf79 /sound/soc/codecs/arizona.c | |
parent | ASoC: SOF: nocodec: modify DAI link definitions (diff) | |
download | linux-3371c6f9f4115d8949e093be8299a9c1ebe29137.tar.xz linux-3371c6f9f4115d8949e093be8299a9c1ebe29137.zip |
ASoC: codecs: Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix multiple
warnings by explicitly adding multiple break statements instead of just
letting the code fall through, and also add fallthrough pseudo-keywords
in places where the code is intended to fall through to the next case.
Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/d17b4d8300dbb6aff0d055b06b487c96ca264757.1605896059.git.gustavoars@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/arizona.c')
-rw-r--r-- | sound/soc/codecs/arizona.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c index 1228f2de0297..e32871b3f68a 100644 --- a/sound/soc/codecs/arizona.c +++ b/sound/soc/codecs/arizona.c @@ -1034,6 +1034,7 @@ int arizona_out_ev(struct snd_soc_dapm_widget *w, priv->out_down_delay++; break; } + break; default: break; } |