aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/arcnet/com20020.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-03-22 21:22:42 -0400
committerDavid S. Miller <davem@davemloft.net>2008-03-22 21:22:42 -0400
commit76fef2b6bffa13ad7ccd54c0493b053295721b9a (patch)
treef4509477d413398b7155fb3c35453ab26bd81bce /drivers/net/arcnet/com20020.c
parent817bc4db7794d6dc6594265ddea88d2b839cf2f8 (diff)
parentef8500457b29eed13d03ff19af36d810308e57b7 (diff)
Merge branch 'upstream-net26' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
Conflicts: drivers/s390/net/qeth_main.c
Diffstat (limited to 'drivers/net/arcnet/com20020.c')
-rw-r--r--drivers/net/arcnet/com20020.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/arcnet/com20020.c b/drivers/net/arcnet/com20020.c
index 7cf0a2511697..8b51313b1300 100644
--- a/drivers/net/arcnet/com20020.c
+++ b/drivers/net/arcnet/com20020.c
@@ -348,14 +348,15 @@ MODULE_LICENSE("GPL");
348 348
349#ifdef MODULE 349#ifdef MODULE
350 350
351int init_module(void) 351static int __init com20020_module_init(void)
352{ 352{
353 BUGLVL(D_NORMAL) printk(VERSION); 353 BUGLVL(D_NORMAL) printk(VERSION);
354 return 0; 354 return 0;
355} 355}
356 356
357void cleanup_module(void) 357static void __exit com20020_module_exit(void)
358{ 358{
359} 359}
360 360module_init(com20020_module_init);
361module_exit(com20020_module_exit);
361#endif /* MODULE */ 362#endif /* MODULE */