mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 21:51:05 +00:00
/drivers/net/atarilance.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>
This commit is contained in:
parent
5250f33229
commit
53e7c46b06
1 changed files with 4 additions and 3 deletions
|
@ -1155,7 +1155,7 @@ static int lance_set_mac_address( struct net_device *dev, void *addr )
|
||||||
#ifdef MODULE
|
#ifdef MODULE
|
||||||
static struct net_device *atarilance_dev;
|
static struct net_device *atarilance_dev;
|
||||||
|
|
||||||
int __init init_module(void)
|
static int __init atarilance_module_init(void)
|
||||||
{
|
{
|
||||||
atarilance_dev = atarilance_probe(-1);
|
atarilance_dev = atarilance_probe(-1);
|
||||||
if (IS_ERR(atarilance_dev))
|
if (IS_ERR(atarilance_dev))
|
||||||
|
@ -1163,13 +1163,14 @@ int __init init_module(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __exit cleanup_module(void)
|
static void __exit atarilance_module_exit(void)
|
||||||
{
|
{
|
||||||
unregister_netdev(atarilance_dev);
|
unregister_netdev(atarilance_dev);
|
||||||
free_irq(atarilance_dev->irq, atarilance_dev);
|
free_irq(atarilance_dev->irq, atarilance_dev);
|
||||||
free_netdev(atarilance_dev);
|
free_netdev(atarilance_dev);
|
||||||
}
|
}
|
||||||
|
module_init(atarilance_module_init);
|
||||||
|
module_exit(atarilance_module_exit);
|
||||||
#endif /* MODULE */
|
#endif /* MODULE */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue