dect
/
linux-2.6
Archived
13
0
Fork 0

watchdog: s3c2410_wdt: use clk_prepare_enable and clk_disable_unprepare

Convert clk_enable/clk_disable to clk_prepare_enable/clk_disable_unprepare
calls as required by common clock framework.

Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Thomas Abraham 2012-10-03 07:32:40 +09:00 committed by Wim Van Sebroeck
parent 2d076bb839
commit 50d854c8a7
1 changed files with 3 additions and 3 deletions

View File

@ -354,7 +354,7 @@ static int s3c2410wdt_probe(struct platform_device *pdev)
goto err_map;
}
clk_enable(wdt_clock);
clk_prepare_enable(wdt_clock);
ret = s3c2410wdt_cpufreq_register();
if (ret < 0) {
@ -421,7 +421,7 @@ static int s3c2410wdt_probe(struct platform_device *pdev)
s3c2410wdt_cpufreq_deregister();
err_clk:
clk_disable(wdt_clock);
clk_disable_unprepare(wdt_clock);
clk_put(wdt_clock);
wdt_clock = NULL;
@ -445,7 +445,7 @@ static int s3c2410wdt_remove(struct platform_device *dev)
s3c2410wdt_cpufreq_deregister();
clk_disable(wdt_clock);
clk_disable_unprepare(wdt_clock);
clk_put(wdt_clock);
wdt_clock = NULL;