aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorSylwester Nawrocki <s.nawrocki@samsung.com>2016-09-02 12:47:54 -0400
committerSylwester Nawrocki <s.nawrocki@samsung.com>2016-09-09 11:35:12 -0400
commitc17a6163647a20d22fa03c00ba8714492b0311c6 (patch)
tree8a1b9659e496efdeebc4aaa2982412063a4ea046 /drivers/clk
parent2ec865b79b3852de6c663073c7a004e1fb918c3b (diff)
clk: samsung: clk-exynos-audss: Whitespace and debug trace cleanup
There is no need to log probe() completion in normal conditions so the "setup completed" log is removed. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/samsung/clk-exynos-audss.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/clk/samsung/clk-exynos-audss.c b/drivers/clk/samsung/clk-exynos-audss.c
index 628f86b60eab..51d152f735cc 100644
--- a/drivers/clk/samsung/clk-exynos-audss.c
+++ b/drivers/clk/samsung/clk-exynos-audss.c
@@ -39,9 +39,9 @@ static struct clk *epll;
39 39
40#ifdef CONFIG_PM_SLEEP 40#ifdef CONFIG_PM_SLEEP
41static unsigned long reg_save[][2] = { 41static unsigned long reg_save[][2] = {
42 {ASS_CLK_SRC, 0}, 42 { ASS_CLK_SRC, 0 },
43 {ASS_CLK_DIV, 0}, 43 { ASS_CLK_DIV, 0 },
44 {ASS_CLK_GATE, 0}, 44 { ASS_CLK_GATE, 0 },
45}; 45};
46 46
47static int exynos_audss_clk_suspend(void) 47static int exynos_audss_clk_suspend(void)
@@ -173,7 +173,7 @@ static int exynos_audss_clk_probe(struct platform_device *pdev)
173 ret = clk_prepare_enable(epll); 173 ret = clk_prepare_enable(epll);
174 if (ret) { 174 if (ret) {
175 dev_err(&pdev->dev, 175 dev_err(&pdev->dev,
176 "failed to prepare the epll clock\n"); 176 "failed to prepare the epll clock\n");
177 return ret; 177 return ret;
178 } 178 }
179 } 179 }
@@ -253,9 +253,6 @@ static int exynos_audss_clk_probe(struct platform_device *pdev)
253#ifdef CONFIG_PM_SLEEP 253#ifdef CONFIG_PM_SLEEP
254 register_syscore_ops(&exynos_audss_clk_syscore_ops); 254 register_syscore_ops(&exynos_audss_clk_syscore_ops);
255#endif 255#endif
256
257 dev_info(&pdev->dev, "setup completed\n");
258
259 return 0; 256 return 0;
260 257
261unregister: 258unregister: