mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-23 05:10:03 +07:00
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>
This commit is contained in:
parent
f4a75d2eb7
commit
2525808ee8
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user