From: Gustavo A. R. Silva Date: Wed, 1 Aug 2018 19:54:03 +0000 (-0500) Subject: ASoC: wm8962: Mark expected switch fall-through X-Git-Tag: v4.19~92^2~2^2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9531ab151117e976544e0dc74a9bc8cbd01145f;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index a11e9d6..efd8910 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;