diff options
author | Jon Schindler <jkschind@gmail.com> | 2008-02-28 02:30:50 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-03-17 07:49:27 -0400 |
commit | b32dac08e4170e54c7edd25212ff48f921bda6e8 (patch) | |
tree | aa91c5a0a6256cc99015ebb780c3065b8e8b2276 /drivers | |
parent | 08dc732bf4aa844b2c3994f2ac0d53a7cfe6d656 (diff) |
/drivers/net/appletalk/cops.c replaced init_module&cleanup_module with module_init&module_exit
Replaced init_module and cleanup_module with static functions and module_init/module_exit.
Signed-off-by: Jon Schindler <jkschind@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/appletalk/cops.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/appletalk/cops.c b/drivers/net/appletalk/cops.c index 92c3a4cf0bb1..65b901ebfd62 100644 --- a/drivers/net/appletalk/cops.c +++ b/drivers/net/appletalk/cops.c | |||
@@ -1010,7 +1010,7 @@ module_param(io, int, 0); | |||
1010 | module_param(irq, int, 0); | 1010 | module_param(irq, int, 0); |
1011 | module_param(board_type, int, 0); | 1011 | module_param(board_type, int, 0); |
1012 | 1012 | ||
1013 | int __init init_module(void) | 1013 | static int __init cops_module_init(void) |
1014 | { | 1014 | { |
1015 | if (io == 0) | 1015 | if (io == 0) |
1016 | printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n", | 1016 | printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n", |
@@ -1021,12 +1021,14 @@ int __init init_module(void) | |||
1021 | return 0; | 1021 | return 0; |
1022 | } | 1022 | } |
1023 | 1023 | ||
1024 | void __exit cleanup_module(void) | 1024 | static void __exit cops_module_exit(void) |
1025 | { | 1025 | { |
1026 | unregister_netdev(cops_dev); | 1026 | unregister_netdev(cops_dev); |
1027 | cleanup_card(cops_dev); | 1027 | cleanup_card(cops_dev); |
1028 | free_netdev(cops_dev); | 1028 | free_netdev(cops_dev); |
1029 | } | 1029 | } |
1030 | module_init(cops_module_init); | ||
1031 | module_exit(cops_module_exit); | ||
1030 | #endif /* MODULE */ | 1032 | #endif /* MODULE */ |
1031 | 1033 | ||
1032 | /* | 1034 | /* |