Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336980
b: refs/heads/master
c: 99ba2fd
h: refs/heads/master
v: v3
  • Loading branch information
Fabio Estevam authored and Greg Kroah-Hartman committed Nov 21, 2012
1 parent 040e1cd commit 6e2ada0
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: 98c4514ff6e3072288770db66f91bdb15af8b433
refs/heads/master: 99ba2fd297ed475dc6782e9029d4da041a85706a
6 changes: 3 additions & 3 deletions trunk/drivers/w1/masters/mxc_w1.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ static int __devinit mxc_w1_probe(struct platform_device *pdev)
if (!mdev)
return -ENOMEM;

mdev->clk = clk_get(&pdev->dev, "owire");
if (!mdev->clk) {
err = -ENODEV;
mdev->clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(mdev->clk)) {
err = PTR_ERR(mdev->clk);
goto failed_clk;
}

Expand Down

0 comments on commit 6e2ada0

Please sign in to comment.