diff options
author | 2013-11-08 10:43:31 +0000 | |
---|---|---|
committer | 2013-11-08 10:43:31 +0000 | |
commit | 672922e975106b2a57cf3f4ba68405e4e5e700cc (patch) | |
tree | b50aa643d35937a3cd66efe97384cbc88b3cc32a | |
parent | Merge remote-tracking branch 'asoc/topic/mc13783' into asoc-next (diff) | |
parent | ASoC: ml26124: Fix negative array index read (diff) | |
download | wireguard-linux-672922e975106b2a57cf3f4ba68405e4e5e700cc.tar.xz wireguard-linux-672922e975106b2a57cf3f4ba68405e4e5e700cc.zip |
Merge remote-tracking branch 'asoc/topic/ml26124' into asoc-next
-rw-r--r-- | sound/soc/codecs/ml26124.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/ml26124.c b/sound/soc/codecs/ml26124.c index 26118828782b..185fa3bc3052 100644 --- a/sound/soc/codecs/ml26124.c +++ b/sound/soc/codecs/ml26124.c @@ -342,6 +342,8 @@ static int ml26124_hw_params(struct snd_pcm_substream *substream, struct ml26124_priv *priv = snd_soc_codec_get_drvdata(codec); int i = get_coeff(priv->mclk, params_rate(hw_params)); + if (i < 0) + return i; priv->substream = substream; priv->rate = params_rate(hw_params); |