summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/da7219.c
diff options
context:
space:
mode:
authorAdam Thomson2016-04-19 16:19:03 +0200
committerMark Brown2016-04-19 18:39:52 +0200
commitfb137ba64a6415ddf231495f6d1a82de1cd69ed0 (patch)
tree153e08e6b9a0c7e51ad64c09c122f1c844be3409 /sound/soc/codecs/da7219.c
parentASoC: da7219: Update PLL ranges and dividers to improve locking (diff)
downloadkernel-qcow2-linux-fb137ba64a6415ddf231495f6d1a82de1cd69ed0.tar.gz
kernel-qcow2-linux-fb137ba64a6415ddf231495f6d1a82de1cd69ed0.tar.xz
kernel-qcow2-linux-fb137ba64a6415ddf231495f6d1a82de1cd69ed0.zip
ASoC: da7219: Disallow unsupported 32KHz clock setting in set_dai_sysclk()
The PLL function was updated to disallow 32KHz in commit 501f72e9c520 ("ASoC: da7219: Remove support for 32KHz PLL mode"), but set_dai_sysclk() was missed and still permits it. This patch resolves that discrepancy. Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/da7219.c')
-rw-r--r--sound/soc/codecs/da7219.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index 3b1d65badbda..caea2ee19d9a 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -1025,7 +1025,7 @@ static int da7219_set_dai_sysclk(struct snd_soc_dai *codec_dai,
if ((da7219->clk_src == clk_id) && (da7219->mclk_rate == freq))
return 0;
- if (((freq < 2000000) && (freq != 32768)) || (freq > 54000000)) {
+ if ((freq < 2000000) || (freq > 54000000)) {
dev_err(codec_dai->dev, "Unsupported MCLK value %d\n",
freq);
return -EINVAL;