Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235074
b: refs/heads/master
c: 36be070
h: refs/heads/master
v: v3
  • Loading branch information
Jamie Iles authored and Herbert Xu committed Jan 29, 2011
1 parent 9d6273a commit c86c229
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: 3e50191d981082345572f1e80b463eb9c05989a0
refs/heads/master: 36be070ac600d023ada2ec107ee925f5ac5f902b
4 changes: 2 additions & 2 deletions trunk/drivers/crypto/omap-sham.c
Original file line number Diff line number Diff line change
Expand Up @@ -1206,9 +1206,9 @@ static int __devinit omap_sham_probe(struct platform_device *pdev)

/* Initializing the clock */
dd->iclk = clk_get(dev, "ick");
if (!dd->iclk) {
if (IS_ERR(dd->iclk)) {
dev_err(dev, "clock intialization failed.\n");
err = -ENODEV;
err = PTR_ERR(dd->iclk);
goto clk_err;
}

Expand Down

0 comments on commit c86c229

Please sign in to comment.