aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/8390p.c
diff options
context:
space:
mode:
authorMateusz Mandera <ormi.linux@gmail.com>2009-04-22 02:24:28 -0700
committerDavid S. Miller <davem@davemloft.net>2009-04-22 02:24:28 -0700
commit362b76edb78923face033e18e4ffc85df8db0f28 (patch)
treef86291eaa418b22d227bfbf9d51e38e0ad3050cd /drivers/net/8390p.c
parent4cb9be7ab47820a1fa747569f5f035a5f628c91b (diff)
8390p: Get rid of init_module/cleanup_module
This trivial patch just "gets rid of" init_module and cleanup_module from drivers/net/8390p.c Signed-off-by: Mateusz Mandera <ormi.linux@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/8390p.c')
-rw-r--r--drivers/net/8390p.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/net/8390p.c b/drivers/net/8390p.c
index 6ec11dafdb1..cacdd86a27d 100644
--- a/drivers/net/8390p.c
+++ b/drivers/net/8390p.c
@@ -91,16 +91,15 @@ void NS8390p_init(struct net_device *dev, int startp)
}
EXPORT_SYMBOL(NS8390p_init);
-#if defined(MODULE)
-
-int init_module(void)
+static int __init 8390p_init_module(void)
{
return 0;
}
-void cleanup_module(void)
+static void __exit 8390p_cleanup_module(void)
{
}
-#endif /* MODULE */
+module_init(8390p_init_module);
+module_exit(8390p_cleanup_module);
MODULE_LICENSE("GPL");