Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346440
b: refs/heads/master
c: 9ed39bf
h: refs/heads/master
v: v3
  • Loading branch information
Devendra Naga authored and Linus Torvalds committed Dec 18, 2012
1 parent 4d46f83 commit 6d37d65
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 32c4746c24728a047a1ef985215edec798bfce1f
refs/heads/master: 9ed39bf931cbd95b30755dcb1ad724fe05565c3f
5 changes: 3 additions & 2 deletions trunk/drivers/rtc/rtc-davinci.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,9 @@ static int __init davinci_rtc_probe(struct platform_device *pdev)
davinci_rtc->rtc = rtc_device_register(pdev->name, &pdev->dev,
&davinci_rtc_ops, THIS_MODULE);
if (IS_ERR(davinci_rtc->rtc)) {
dev_err(dev, "unable to register RTC device, err %ld\n",
PTR_ERR(davinci_rtc->rtc));
ret = PTR_ERR(davinci_rtc->rtc);
dev_err(dev, "unable to register RTC device, err %d\n",
ret);
goto fail3;
}

Expand Down

0 comments on commit 6d37d65

Please sign in to comment.