drivers/net/arcnet/capmode.c: replace 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: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
32c9874759
commit
7249d4c398
|
@ -80,17 +80,19 @@ void arcnet_cap_init(void)
|
||||||
|
|
||||||
#ifdef MODULE
|
#ifdef MODULE
|
||||||
|
|
||||||
int __init init_module(void)
|
static int __init capmode_module_init(void)
|
||||||
{
|
{
|
||||||
printk(VERSION);
|
printk(VERSION);
|
||||||
arcnet_cap_init();
|
arcnet_cap_init();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cleanup_module(void)
|
static void __exit capmode_module_exit(void)
|
||||||
{
|
{
|
||||||
arcnet_unregister_proto(&capmode_proto);
|
arcnet_unregister_proto(&capmode_proto);
|
||||||
}
|
}
|
||||||
|
module_init(capmode_module_init);
|
||||||
|
module_exit(capmode_module_exit);
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
#endif /* MODULE */
|
#endif /* MODULE */
|
||||||
|
|
Loading…
Reference in New Issue