Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 169061
b: refs/heads/master
c: fa00e10
h: refs/heads/master
i:
  169059: 0634c05
v: v3
  • Loading branch information
Dan Carpenter authored and Linus Torvalds committed Dec 2, 2009
1 parent 4a89c47 commit 1f17ff8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: 4c4cb1b1605e50983afd7924980c9434b214599f
refs/heads/master: fa00e106eb6f082654d822a0946c0c86297ede2c
3 changes: 2 additions & 1 deletion trunk/drivers/rtc/rtc-pcf50633.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,9 @@ static int __devinit pcf50633_rtc_probe(struct platform_device *pdev)
&pcf50633_rtc_ops, THIS_MODULE);

if (IS_ERR(rtc->rtc_dev)) {
int ret = PTR_ERR(rtc->rtc_dev);
kfree(rtc);
return PTR_ERR(rtc->rtc_dev);
return ret;
}

pcf50633_register_irq(rtc->pcf, PCF50633_IRQ_ALARM,
Expand Down

0 comments on commit 1f17ff8

Please sign in to comment.