Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 87228
b: refs/heads/master
c: e8a1d91
h: refs/heads/master
v: v3
  • Loading branch information
Jon Schindler authored and David S. Miller committed Mar 6, 2008
1 parent fd65835 commit 30b48fb
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: 3cfbb6771b11c161aaee0cc839f923fc208868b8
refs/heads/master: e8a1d919d16abaccc4564bd913cac9a0c1aaf078
7 changes: 4 additions & 3 deletions trunk/drivers/net/ac3200.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ MODULE_PARM_DESC(mem, "Memory base address(es)");
MODULE_DESCRIPTION("Ansel AC3200 EISA ethernet driver");
MODULE_LICENSE("GPL");

int __init init_module(void)
static int __init ac3200_module_init(void)
{
struct net_device *dev;
int this_dev, found = 0;
Expand Down Expand Up @@ -404,8 +404,7 @@ static void cleanup_card(struct net_device *dev)
iounmap(ei_status.mem);
}

void __exit
cleanup_module(void)
static void __exit ac3200_module_exit(void)
{
int this_dev;

Expand All @@ -418,4 +417,6 @@ cleanup_module(void)
}
}
}
module_init(ac3200_module_init);
module_exit(ac3200_module_exit);
#endif /* MODULE */

0 comments on commit 30b48fb

Please sign in to comment.