Commit 362b76ed authored by Mateusz Mandera's avatar Mateusz Mandera Committed by David S. Miller

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: default avatarMateusz Mandera <ormi.linux@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4cb9be7a
...@@ -91,16 +91,15 @@ void NS8390p_init(struct net_device *dev, int startp) ...@@ -91,16 +91,15 @@ void NS8390p_init(struct net_device *dev, int startp)
} }
EXPORT_SYMBOL(NS8390p_init); EXPORT_SYMBOL(NS8390p_init);
#if defined(MODULE) static int __init 8390p_init_module(void)
int init_module(void)
{ {
return 0; 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"); MODULE_LICENSE("GPL");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment