summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorMark Brown2014-01-15 20:04:19 +0100
committerMark Brown2014-01-16 00:06:59 +0100
commit1104a9c822f0e9f5e57a236f20a142166dd8f91e (patch)
treeff1de4e8091fedac14189aa09c6a4bf51d92cda3 /sound/soc/soc-core.c
parentASoC: pcm: Fix lack of platform bespoke_trigger() call (diff)
downloadkernel-qcow2-linux-1104a9c822f0e9f5e57a236f20a142166dd8f91e.tar.gz
kernel-qcow2-linux-1104a9c822f0e9f5e57a236f20a142166dd8f91e.tar.xz
kernel-qcow2-linux-1104a9c822f0e9f5e57a236f20a142166dd8f91e.zip
ASoC: core: Return -ENOTSUPP from set_sysclk() if no operation provided
Make it easier for generic code to work with set_sysclk() by distinguishing between the operation not being supported and an error as is done for other operations like set_dai_fmt() Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 03c779ebd729..0ebf1dac330d 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3484,7 +3484,7 @@ int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
freq, dir);
else
- return -EINVAL;
+ return -ENOTSUPP;
}
EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
@@ -3505,7 +3505,7 @@ int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
return codec->driver->set_sysclk(codec, clk_id, source,
freq, dir);
else
- return -EINVAL;
+ return -ENOTSUPP;
}
EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);