summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorMark Brown2012-04-13 20:16:03 +0200
committerMark Brown2012-04-16 20:36:29 +0200
commit04570c628fbd5ede85d87a0b81bd19df7b13bbc4 (patch)
treeb65f986f5c693ac92482eb3242b60607663fe3a1 /sound/soc/soc-core.c
parentASoC: dapm: release lock on error paths (diff)
downloadkernel-qcow2-linux-04570c628fbd5ede85d87a0b81bd19df7b13bbc4.tar.gz
kernel-qcow2-linux-04570c628fbd5ede85d87a0b81bd19df7b13bbc4.tar.xz
kernel-qcow2-linux-04570c628fbd5ede85d87a0b81bd19df7b13bbc4.zip
ASoC: core: Return -ENOTSUPP instead of -EINVAL if mute is not supported
This helps us ignore errors in callers if the operation failed due to not being available as opposed to an error. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 8a17048dba42..98a4f7aa4f01 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3031,7 +3031,7 @@ int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
if (dai->driver && dai->driver->ops->digital_mute)
return dai->driver->ops->digital_mute(dai, mute);
else
- return -EINVAL;
+ return -ENOTSUPP;
}
EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);