diff options
Diffstat (limited to 'drivers/net/arcnet/com20020.c')
-rw-r--r-- | drivers/net/arcnet/com20020.c | 7 |
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 | ||
351 | int init_module(void) | 351 | static 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 | ||
357 | void cleanup_module(void) | 357 | static void __exit com20020_module_exit(void) |
358 | { | 358 | { |
359 | } | 359 | } |
360 | 360 | module_init(com20020_module_init); | |
361 | module_exit(com20020_module_exit); | ||
361 | #endif /* MODULE */ | 362 | #endif /* MODULE */ |