aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net')
-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 7cf0a251169..8b51313b130 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 */