summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/rl6231.c
diff options
context:
space:
mode:
authorBard Liao <bardliao@realtek.com>2015-11-10 14:40:55 +0800
committerMark Brown <broonie@kernel.org>2015-11-10 18:58:19 +0000
commit2f64b6ed44c26eeb3d1bf5428936629cf552eda7 (patch)
treeb04ad87ce6b7b8259ee047945b20f81e243b640c /sound/soc/codecs/rl6231.c
parent6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff)
downloadlinux-2f64b6ed44c26eeb3d1bf5428936629cf552eda7.tar.bz2
ASoC: rl6231: avoid using divisible by 3 for DMIC clk
Few codecs will meet no DMIC clock output issue when select a divided number which is divisible by 3. To prevent this issue, the patch ignore the numbers when calculating the DMIC clock divider. Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rl6231.c')
-rw-r--r--sound/soc/codecs/rl6231.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/rl6231.c b/sound/soc/codecs/rl6231.c
index aca479fa7670..18b42925314e 100644
--- a/sound/soc/codecs/rl6231.c
+++ b/sound/soc/codecs/rl6231.c
@@ -80,6 +80,8 @@ int rl6231_calc_dmic_clk(int rate)
}
for (i = 0; i < ARRAY_SIZE(div); i++) {
+ if ((div[i] % 3) == 0)
+ continue;
/* find divider that gives DMIC frequency below 3MHz */
if (3000000 * div[i] >= rate)
return i;