Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309400
b: refs/heads/master
c: d9df0ef
h: refs/heads/master
v: v3
  • Loading branch information
Viresh Kumar authored and Wim Van Sebroeck committed May 30, 2012
1 parent 4b97bdb commit 0b46b25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4a516539faba13deca2399cff8faaa84d251a4ea
refs/heads/master: d9df0ef1eb9e1048f0ab4a6e93c85f60c5594c2f
8 changes: 8 additions & 0 deletions trunk/drivers/watchdog/sp805_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,16 @@ static int wdt_config(struct watchdog_device *wdd, bool ping)
int ret;

if (!ping) {
ret = clk_prepare(wdt->clk);
if (ret) {
dev_err(&wdt->adev->dev, "clock prepare fail");
return ret;
}

ret = clk_enable(wdt->clk);
if (ret) {
dev_err(&wdt->adev->dev, "clock enable fail");
clk_unprepare(wdt->clk);
return ret;
}
}
Expand Down Expand Up @@ -184,6 +191,7 @@ static int wdt_disable(struct watchdog_device *wdd)
spin_unlock(&wdt->lock);

clk_disable(wdt->clk);
clk_unprepare(wdt->clk);

return 0;
}
Expand Down

0 comments on commit 0b46b25

Please sign in to comment.