diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-10 15:19:19 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-11 03:43:20 +0200 |
commit | 280ec8b718e8565333ace339d6bba91239440b20 (patch) | |
tree | 5aa072b80464be59c0e9b8d5b35008814d5a0213 /sound | |
parent | ASoC: Fix typo in wm8750 spi_ids (diff) | |
download | linux-280ec8b718e8565333ace339d6bba91239440b20.tar.xz linux-280ec8b718e8565333ace339d6bba91239440b20.zip |
ASoC: Add missing break in WM8994 probe
This error would have no effect on current silicon revisions, the fall
through case has the same behaviour.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8994.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c index 09e680ae88b2..b393f9fac97a 100644 --- a/sound/soc/codecs/wm8994.c +++ b/sound/soc/codecs/wm8994.c @@ -2981,6 +2981,7 @@ static int wm8994_codec_probe(struct snd_soc_codec *codec) wm8994->hubs.dcs_readback_mode = 1; break; } + break; case WM8958: wm8994->hubs.dcs_readback_mode = 1; |