Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347988
b: refs/heads/master
c: 50d854c
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Abraham authored and Wim Van Sebroeck committed Dec 19, 2012
1 parent 99aac1a commit e7a1936
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2d076bb8397fea2480487e9547e34b8d4f77eb67
refs/heads/master: 50d854c8a72b87ffa5523aa07c5013e2c6657714
6 changes: 3 additions & 3 deletions trunk/drivers/watchdog/s3c2410_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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;

Expand All @@ -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;

Expand Down

0 comments on commit e7a1936

Please sign in to comment.