From: Sachin Kamat Date: Mon, 19 Nov 2012 05:48:14 +0000 (+0530) Subject: ASoC: rt5631: Fix return value X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2525808ee827267e794d9931cd305e95ffb76605;p=deliverable%2Flinux.git ASoC: rt5631: Fix return value Return the value obtained from get_coeff() instead of EINVAL. Silences a smatch warning. Signed-off-by: Sachin Kamat Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt5631.c b/sound/soc/codecs/rt5631.c index 960d0e93cce9..d6ca615489ee 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)) {