From: Axel Lin Date: Wed, 31 Oct 2012 08:07:43 +0000 (+0800) Subject: ASoC: si476x: Add missing break for SNDRV_PCM_FORMAT_S8 switch case X-Git-Tag: v3.9-rc6~16^2~7^2~1^2 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/4e38b745af76cdd93bca33258e1e33a23458f92c ASoC: si476x: Add missing break for SNDRV_PCM_FORMAT_S8 switch case Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/si476x.c b/sound/soc/codecs/si476x.c index f2d61a187830..566ea3256e2d 100644 --- a/sound/soc/codecs/si476x.c +++ b/sound/soc/codecs/si476x.c @@ -159,6 +159,7 @@ static int si476x_codec_hw_params(struct snd_pcm_substream *substream, switch (params_format(params)) { case SNDRV_PCM_FORMAT_S8: width = SI476X_PCM_FORMAT_S8; + break; case SNDRV_PCM_FORMAT_S16_LE: width = SI476X_PCM_FORMAT_S16_LE; break;