mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
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>
This commit is contained in:
parent
2ec865b79b
commit
c17a616364
@ -39,9 +39,9 @@ static struct clk *epll;
|
|||||||
|
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
static unsigned long reg_save[][2] = {
|
static unsigned long reg_save[][2] = {
|
||||||
{ASS_CLK_SRC, 0},
|
{ ASS_CLK_SRC, 0 },
|
||||||
{ASS_CLK_DIV, 0},
|
{ ASS_CLK_DIV, 0 },
|
||||||
{ASS_CLK_GATE, 0},
|
{ ASS_CLK_GATE, 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static int exynos_audss_clk_suspend(void)
|
static int exynos_audss_clk_suspend(void)
|
||||||
@ -173,7 +173,7 @@ static int exynos_audss_clk_probe(struct platform_device *pdev)
|
|||||||
ret = clk_prepare_enable(epll);
|
ret = clk_prepare_enable(epll);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev,
|
||||||
"failed to prepare the epll clock\n");
|
"failed to prepare the epll clock\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -253,9 +253,6 @@ static int exynos_audss_clk_probe(struct platform_device *pdev)
|
|||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
register_syscore_ops(&exynos_audss_clk_syscore_ops);
|
register_syscore_ops(&exynos_audss_clk_syscore_ops);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
dev_info(&pdev->dev, "setup completed\n");
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
unregister:
|
unregister:
|
||||||
|
Loading…
Reference in New Issue
Block a user