diff options
author | Thomas Abraham <thomas.abraham@linaro.org> | 2012-10-03 07:32:40 +0900 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-12-19 22:24:43 +0100 |
commit | 50d854c8a72b87ffa5523aa07c5013e2c6657714 (patch) | |
tree | 77d28236b4a99dba62249d7240ec9840aa7526f8 /drivers | |
parent | 2d076bb8397fea2480487e9547e34b8d4f77eb67 (diff) | |
download | linux-50d854c8a72b87ffa5523aa07c5013e2c6657714.tar.gz linux-50d854c8a72b87ffa5523aa07c5013e2c6657714.tar.bz2 linux-50d854c8a72b87ffa5523aa07c5013e2c6657714.zip |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/watchdog/s3c2410_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/s3c2410_wdt.c b/drivers/watchdog/s3c2410_wdt.c index b0dab10fc6a5..27bcd4e2c4a4 100644 --- a/drivers/watchdog/s3c2410_wdt.c +++ b/drivers/watchdog/s3c2410_wdt.c @@ -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; |