summaryrefslogtreecommitdiff
path: root/sound/soc/codecs/rt5631.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-11-19 05:48:14 (GMT)
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-11-19 06:21:20 (GMT)
commit2525808ee827267e794d9931cd305e95ffb76605 (patch)
tree602f16016592b1e8f3d2954d338496219f550557 /sound/soc/codecs/rt5631.c
parentf4a75d2eb7b1e2206094b901be09adb31ba63681 (diff)
downloadlinux-2525808ee827267e794d9931cd305e95ffb76605.tar.xz
ASoC: rt5631: Fix return value
Return the value obtained from get_coeff() instead of EINVAL. Silences a smatch warning. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/rt5631.c')
-rw-r--r--sound/soc/codecs/rt5631.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5631.c b/sound/soc/codecs/rt5631.c
index 960d0e9..d6ca615 100644
--- a/sound/soc/codecs/rt5631.c
+++ b/sound/soc/codecs/rt5631.c
@@ -1382,7 +1382,7 @@ static int rt5631_hifi_pcm_params(struct snd_pcm_substream *substream,
timesofbclk);
if (coeff < 0) {
dev_err(codec->dev, "Fail to get coeff\n");
- return -EINVAL;
+ return coeff;
}
switch (params_format(params)) {