Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325445
b: refs/heads/master
c: b0ba767
h: refs/heads/master
i:
  325443: 1a089b4
v: v3
  • Loading branch information
Wei Yongjun authored and Greg Kroah-Hartman committed Sep 21, 2012
1 parent db892bd commit 8a01db1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: a00979cccb9cc9727b8357f8fdf1c1924c9b73ef
refs/heads/master: b0ba76785eef21ecfa3bcd2f6358f9cebbd8a9db
4 changes: 2 additions & 2 deletions trunk/drivers/staging/tidspbridge/core/wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ int dsp_wdt_init(void)

dsp_wdt.fclk = clk_get(NULL, "wdt3_fck");

if (dsp_wdt.fclk) {
if (!IS_ERR(dsp_wdt.fclk)) {
dsp_wdt.iclk = clk_get(NULL, "wdt3_ick");
if (!dsp_wdt.iclk) {
if (IS_ERR(dsp_wdt.iclk)) {
clk_put(dsp_wdt.fclk);
dsp_wdt.fclk = NULL;
ret = -EFAULT;
Expand Down

0 comments on commit 8a01db1

Please sign in to comment.