Instead of getting the clock names individually, it would be good to put
the logic within a loop.

Signed-off-by: Tushar Behera <tusha...@samsung.com>
---
Changes for V2:
* Calling clk_put as soon as the clock is not required anymore

 drivers/clk/samsung/clk-exynos-audss.c |   35 +++++++++++++++++---------------
 1 file changed, 19 insertions(+), 16 deletions(-)

diff --git a/drivers/clk/samsung/clk-exynos-audss.c 
b/drivers/clk/samsung/clk-exynos-audss.c
index 13eae14c..1a5294c 100644
--- a/drivers/clk/samsung/clk-exynos-audss.c
+++ b/drivers/clk/samsung/clk-exynos-audss.c
@@ -80,10 +80,14 @@ static int exynos_audss_clk_probe(struct platform_device 
*pdev)
 {
        int i, ret = 0;
        struct resource *res;
+       struct clk *tmp;
+       const char *clk_name_ref[] = {
+               "pll_ref", "pll_in", "cdclk", "sclk_audio", "sclk_pcm_in" };
+       const char *clk_name_actual[] = {
+               "fin_pll", "fout_epll", "cdclk0", "sclk_audio0", "sclk_pcm0"};
        const char *mout_audss_p[] = {"fin_pll", "fout_epll"};
        const char *mout_i2s_p[] = {"mout_audss", "cdclk0", "sclk_audio0"};
        const char *sclk_pcm_p = "sclk_pcm0";
-       struct clk *pll_ref, *pll_in, *cdclk, *sclk_audio, *sclk_pcm_in;
        const struct of_device_id *match;
        enum exynos_audss_clk_type variant;
 
@@ -111,23 +115,25 @@ static int exynos_audss_clk_probe(struct platform_device 
*pdev)
        else
                clk_data.clk_num = EXYNOS_AUDSS_MAX_CLKS - 1;
 
-       pll_ref = devm_clk_get(&pdev->dev, "pll_ref");
-       pll_in = devm_clk_get(&pdev->dev, "pll_in");
-       if (!IS_ERR(pll_ref))
-               mout_audss_p[0] = __clk_get_name(pll_ref);
-       if (!IS_ERR(pll_in))
-               mout_audss_p[1] = __clk_get_name(pll_in);
+       for (i = 0; i < ARRAY_SIZE(clk_name_ref); i++) {
+               tmp = clk_get(&pdev->dev, clk_name_ref[i]);
+               if (!IS_ERR(tmp)) {
+                       clk_name_actual[i] = __clk_get_name(tmp);
+                       clk_put(tmp);
+               }
+       }
+
+       mout_audss_p[0] = clk_name_actual[0];
+       mout_audss_p[1] = clk_name_actual[1];
+       mout_i2s_p[1] = clk_name_actual[2];
+       mout_i2s_p[2] = clk_name_actual[3];
+       sclk_pcm_p = clk_name_actual[4];
+
        clk_table[EXYNOS_MOUT_AUDSS] = clk_register_mux(NULL, "mout_audss",
                                mout_audss_p, ARRAY_SIZE(mout_audss_p),
                                CLK_SET_RATE_NO_REPARENT,
                                reg_base + ASS_CLK_SRC, 0, 1, 0, &lock);
 
-       cdclk = devm_clk_get(&pdev->dev, "cdclk");
-       sclk_audio = devm_clk_get(&pdev->dev, "sclk_audio");
-       if (!IS_ERR(cdclk))
-               mout_i2s_p[1] = __clk_get_name(cdclk);
-       if (!IS_ERR(sclk_audio))
-               mout_i2s_p[2] = __clk_get_name(sclk_audio);
        clk_table[EXYNOS_MOUT_I2S] = clk_register_mux(NULL, "mout_i2s",
                                mout_i2s_p, ARRAY_SIZE(mout_i2s_p),
                                CLK_SET_RATE_NO_REPARENT,
@@ -161,9 +167,6 @@ static int exynos_audss_clk_probe(struct platform_device 
*pdev)
                                 "sclk_pcm", CLK_SET_RATE_PARENT,
                                reg_base + ASS_CLK_GATE, 4, 0, &lock);
 
-       sclk_pcm_in = devm_clk_get(&pdev->dev, "sclk_pcm_in");
-       if (!IS_ERR(sclk_pcm_in))
-               sclk_pcm_p = __clk_get_name(sclk_pcm_in);
        clk_table[EXYNOS_SCLK_PCM] = clk_register_gate(NULL, "sclk_pcm",
                                sclk_pcm_p, CLK_SET_RATE_PARENT,
                                reg_base + ASS_CLK_GATE, 5, 0, &lock);
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to