Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 217609
b: refs/heads/master
c: 6496a5c
h: refs/heads/master
i:
  217607: bb5ef86
v: v3
  • Loading branch information
Vasiliy Kulikov authored and Chris Metcalf committed Oct 14, 2010
1 parent 7c6ba89 commit c80fb5e
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: 77d233036ea886398770f208aa22235acf0d011c
refs/heads/master: 6496a5c9e7ccc4e2ec34c09d04a819f8fdc29981
5 changes: 3 additions & 2 deletions trunk/drivers/char/hvc_tile.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ console_initcall(hvc_tile_console_init);

static int __init hvc_tile_init(void)
{
hvc_alloc(0, 0, &hvc_tile_get_put_ops, 128);
return 0;
struct hvc_struct *s;
s = hvc_alloc(0, 0, &hvc_tile_get_put_ops, 128);
return IS_ERR(s) ? PTR_ERR(s) : 0;
}
device_initcall(hvc_tile_init);

0 comments on commit c80fb5e

Please sign in to comment.