summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2013-04-30 10:24:41 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-19 10:54:34 -0700
commit3fbe1888cace5d821aa59f804737c90ac6eb4542 (patch)
treebff14878bd32e5763917c3a3678a0a17e53b91ad
parent4831852099fa57f0ac7948339a1e7554db67335b (diff)
ASoC: wm8994: missing break in wm8994_aif3_hw_params()
commit 4495e46fe18f198366961bb2b324a694ef8a9b44 upstream. The missing break here means that we always return early and the function is a no-op. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--sound/soc/codecs/wm8994.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c
index 4c471a54893e..d9924d76f713 100644
--- a/sound/soc/codecs/wm8994.c
+++ b/sound/soc/codecs/wm8994.c
@@ -2824,6 +2824,7 @@ static int wm8994_aif3_hw_params(struct snd_pcm_substream *substream,
default:
return 0;
}
+ break;
default:
return 0;
}