[patch 13/17] drivers/net/arcnet/com20020.c: replace init_module&cleanup_module with module_init&module_exit
From: akpm@linux-foundation.org
Date: 2008-03-04 23:19:37
From: akpm@linux-foundation.org
Date: 2008-03-04 23:19:37
From: Jon Schindler <redacted> Replaced init_module and cleanup_module with static functions and module_init/module_exit. Signed-off-by: Jon Schindler <redacted> Cc: Jeff Garzik <redacted> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/net/arcnet/com20020.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN drivers/net/arcnet/com20020.c~drivers-net-arcnet-com20020c-replace-init_modulecleanup_module-with-module_initmodule_exit drivers/net/arcnet/com20020.c
--- a/drivers/net/arcnet/com20020.c~drivers-net-arcnet-com20020c-replace-init_modulecleanup_module-with-module_initmodule_exit
+++ a/drivers/net/arcnet/com20020.c@@ -348,14 +348,15 @@ MODULE_LICENSE("GPL"); #ifdef MODULE -int init_module(void) +static int __init com20020_module_init(void) { BUGLVL(D_NORMAL) printk(VERSION); return 0; } -void cleanup_module(void) +static void __exit com20020_module_exit(void) { } - +module_init(com20020_module_init); +module_exit(com20020_module_exit); #endif /* MODULE */
_