Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324320
b: refs/heads/master
c: e045907
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and Greg Kroah-Hartman committed Aug 16, 2012
1 parent 6190633 commit 10a5750
Show file tree
Hide file tree
Showing 2 changed files with 4 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: d2323cf77308d6aa13a3a5287310ef93c4919d1e
refs/heads/master: e045907c0a08d09cbc992cd00f788ef0dd83889d
4 changes: 3 additions & 1 deletion trunk/drivers/char/tlclk.c
Original file line number Diff line number Diff line change
Expand Up @@ -784,8 +784,10 @@ static int __init tlclk_init(void)
}
tlclk_major = ret;
alarm_events = kzalloc( sizeof(struct tlclk_alarms), GFP_KERNEL);
if (!alarm_events)
if (!alarm_events) {
ret = -ENOMEM;
goto out1;
}

/* Read telecom clock IRQ number (Set by BIOS) */
if (!request_region(TLCLK_BASE, 8, "telco_clock")) {
Expand Down

0 comments on commit 10a5750

Please sign in to comment.