diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-31 11:55:06 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-31 11:55:06 -0800 |
commit | c7f46b7aa4ae5cbef32eb5e016512a14f936affa (patch) | |
tree | b375999b892699e4fe92415fdd460dcf53fc7baa | |
parent | ac97ecc886472e97ff22a81c298163d180d24605 (diff) | |
parent | 990fc3d0b2c27a9633b8f4566273da60aebe5941 (diff) | |
download | linux-c7f46b7aa4ae5cbef32eb5e016512a14f936affa.tar.bz2 |
Merge branch 'fix/asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
* 'fix/asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:
ASoC: wm8776: add missing break in sample size switch
-rw-r--r-- | sound/soc/codecs/wm8776.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8776.c b/sound/soc/codecs/wm8776.c index bfdc52370ad0..d3b0a20744f1 100644 --- a/sound/soc/codecs/wm8776.c +++ b/sound/soc/codecs/wm8776.c @@ -235,6 +235,7 @@ static int wm8776_hw_params(struct snd_pcm_substream *substream, switch (snd_pcm_format_width(params_format(params))) { case 16: iface = 0; + break; case 20: iface = 0x10; break; |