summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorValentin Ilie <valentin.ilie@gmail.com>2013-09-14 02:20:37 +0300
committerMark Brown <broonie@linaro.org>2013-09-17 00:47:14 +0100
commit4f8ec173775fc732075cce78bd2c30660259c14c (patch)
tree78efdeb9c6c06bcd5db6c14bbea4d4e330bc5c3d /sound
parent272b98c6455f00884f0350f775c5342358ebb73f (diff)
downloadlinux-0-day-4f8ec173775fc732075cce78bd2c30660259c14c.tar.gz
linux-0-day-4f8ec173775fc732075cce78bd2c30660259c14c.tar.xz
ASoC: blackfin: Add missing break statement to bf6xx
SNDRV_PCM_FORMAT_S8 isn't supposed to fall through to SNDRV_PCM_FORMAT_S16_LE Signed-off-by: Valentin Ilie <valentin.ilie@gmail.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/blackfin/bf6xx-i2s.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/blackfin/bf6xx-i2s.c b/sound/soc/blackfin/bf6xx-i2s.c
index c02405cc007db..5810a0603f2f1 100644
--- a/sound/soc/blackfin/bf6xx-i2s.c
+++ b/sound/soc/blackfin/bf6xx-i2s.c
@@ -88,6 +88,7 @@ static int bfin_i2s_hw_params(struct snd_pcm_substream *substream,
case SNDRV_PCM_FORMAT_S8:
param.spctl |= 0x70;
sport->wdsize = 1;
+ break;
case SNDRV_PCM_FORMAT_S16_LE:
param.spctl |= 0xf0;
sport->wdsize = 2;