Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 87226
b: refs/heads/master
c: 7249d4c
h: refs/heads/master
v: v3
  • Loading branch information
Jon Schindler authored and David S. Miller committed Mar 6, 2008
1 parent cf3d336 commit 237cefb
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 32c9874759651b69e496f89ec9e5e6702f67ffca
refs/heads/master: 7249d4c3985454ee5cd150198bb21cb15dee242e
6 changes: 4 additions & 2 deletions trunk/drivers/net/arcnet/capmode.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,19 @@ void arcnet_cap_init(void)

#ifdef MODULE

int __init init_module(void)
static int __init capmode_module_init(void)
{
printk(VERSION);
arcnet_cap_init();
return 0;
}

void cleanup_module(void)
static void __exit capmode_module_exit(void)
{
arcnet_unregister_proto(&capmode_proto);
}
module_init(capmode_module_init);
module_exit(capmode_module_exit);

MODULE_LICENSE("GPL");
#endif /* MODULE */
Expand Down

0 comments on commit 237cefb

Please sign in to comment.