aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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,
1025 if ((da7219->clk_src == clk_id) && (da7219->mclk_rate == freq)) 1025 if ((da7219->clk_src == clk_id) && (da7219->mclk_rate == freq))
1026 return 0; 1026 return 0;
1027 1027
1028 if (((freq < 2000000) && (freq != 32768)) || (freq > 54000000)) { 1028 if ((freq < 2000000) || (freq > 54000000)) {
1029 dev_err(codec_dai->dev, "Unsupported MCLK value %d\n", 1029 dev_err(codec_dai->dev, "Unsupported MCLK value %d\n",
1030 freq); 1030 freq);
1031 return -EINVAL; 1031 return -EINVAL;