]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: rt5677: Convert to use rl6231_get_clk_info
authorAxel Lin <axel.lin@ingics.com>
Tue, 10 Jun 2014 00:57:36 +0000 (08:57 +0800)
committerMark Brown <broonie@linaro.org>
Mon, 16 Jun 2014 14:58:06 +0000 (15:58 +0100)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Tested-by: Oder Chiou <oder_chiou@realtek.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/codecs/Kconfig
sound/soc/codecs/rt5677.c

index cbfa1e18f65192afade5b31cccc77558b1dd050d..9d88845dc7c4ff756d3f5da62e20cb5c19048736 100644 (file)
@@ -445,9 +445,11 @@ config SND_SOC_RL6231
        default y if SND_SOC_RT5640=y
        default y if SND_SOC_RT5645=y
        default y if SND_SOC_RT5651=y
+       default y if SND_SOC_RT5677=y
        default m if SND_SOC_RT5640=m
        default m if SND_SOC_RT5645=m
        default m if SND_SOC_RT5651=m
+       default m if SND_SOC_RT5677=m
 
 config SND_SOC_RT5631
        tristate
index 60fff7fdb85e58abf1a22fbdf045ed924652e323..1ffc6891fcbc615e509fd30c1f88450f0d09cea7 100644 (file)
@@ -27,6 +27,7 @@
 #include <sound/initval.h>
 #include <sound/tlv.h>
 
+#include "rl6231.h"
 #include "rt5677.h"
 
 #define RT5677_DEVICE_ID 0x6327
@@ -2798,21 +2799,6 @@ static const struct snd_soc_dapm_route rt5677_dapm_routes[] = {
        { "PDM2R", NULL, "PDM2 R Mux" },
 };
 
-static int get_clk_info(int sclk, int rate)
-{
-       int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
-
-       if (sclk <= 0 || rate <= 0)
-               return -EINVAL;
-
-       rate = rate << 8;
-       for (i = 0; i < ARRAY_SIZE(pd); i++)
-               if (sclk == rate * pd[i])
-                       return i;
-
-       return -EINVAL;
-}
-
 static int rt5677_hw_params(struct snd_pcm_substream *substream,
        struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
 {
@@ -2822,7 +2808,7 @@ static int rt5677_hw_params(struct snd_pcm_substream *substream,
        int pre_div, bclk_ms, frame_size;
 
        rt5677->lrck[dai->id] = params_rate(params);
-       pre_div = get_clk_info(rt5677->sysclk, rt5677->lrck[dai->id]);
+       pre_div = rl6231_get_clk_info(rt5677->sysclk, rt5677->lrck[dai->id]);
        if (pre_div < 0) {
                dev_err(codec->dev, "Unsupported clock setting\n");
                return -EINVAL;