Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90237
b: refs/heads/master
c: 0ebd1c1
h: refs/heads/master
i:
  90235: 2454f1d
v: v3
  • Loading branch information
Jon Schindler authored and Jeff Garzik committed Mar 17, 2008
1 parent b2c0955 commit 8f7e239
Show file tree
Hide file tree
Showing 2 changed files with 5 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: b32dac08e4170e54c7edd25212ff48f921bda6e8
refs/heads/master: 0ebd1c1d7dec3aae2c336fb1fd930961735ff249
7 changes: 4 additions & 3 deletions trunk/drivers/net/arcnet/com20020.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,14 +348,15 @@ MODULE_LICENSE("GPL");

#ifdef MODULE

int init_module(void)
static int __init com20020_module_init(void)
{
BUGLVL(D_NORMAL) printk(VERSION);
return 0;
}

void cleanup_module(void)
static void __exit com20020_module_exit(void)
{
}

module_init(com20020_module_init);
module_exit(com20020_module_exit);
#endif /* MODULE */

0 comments on commit 8f7e239

Please sign in to comment.