ethernet: isa: convert to module_init/module_exit
There are a couple of ISA ethernet drivers that use the old init_module/cleanup_module function names for the main entry points, nothing else uses those any more. Change them to the documented method with module_init() and module_exit() markers next to static functions. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d52c1069d6
commit
a07d8ecf6b
@@ -407,7 +407,7 @@ MODULE_PARM_DESC(max_interrupt_work, "3c515 maximum events handled per interrupt
|
||||
/* we will need locking (and refcounting) if we ever use it for more */
|
||||
static LIST_HEAD(root_corkscrew_dev);
|
||||
|
||||
int init_module(void)
|
||||
static int corkscrew_init_module(void)
|
||||
{
|
||||
int found = 0;
|
||||
if (debug >= 0)
|
||||
@@ -416,6 +416,7 @@ int init_module(void)
|
||||
found++;
|
||||
return found ? 0 : -ENODEV;
|
||||
}
|
||||
module_init(corkscrew_init_module);
|
||||
|
||||
#else
|
||||
struct net_device *tc515_probe(int unit)
|
||||
|
||||
@@ -923,7 +923,7 @@ static void __init ne_add_devices(void)
|
||||
}
|
||||
|
||||
#ifdef MODULE
|
||||
int __init init_module(void)
|
||||
static int __init ne_init(void)
|
||||
{
|
||||
int retval;
|
||||
ne_add_devices();
|
||||
@@ -940,6 +940,7 @@ int __init init_module(void)
|
||||
ne_loop_rm_unreg(0);
|
||||
return retval;
|
||||
}
|
||||
module_init(ne_init);
|
||||
#else /* MODULE */
|
||||
static int __init ne_init(void)
|
||||
{
|
||||
|
||||
@@ -522,7 +522,6 @@ static void ultra_pio_input(struct net_device *dev, int count,
|
||||
/* We know skbuffs are padded to at least word alignment. */
|
||||
insw(ioaddr + IOPD, buf, (count+1)>>1);
|
||||
}
|
||||
|
||||
static void ultra_pio_output(struct net_device *dev, int count,
|
||||
const unsigned char *buf, const int start_page)
|
||||
{
|
||||
@@ -572,8 +571,7 @@ MODULE_LICENSE("GPL");
|
||||
|
||||
/* This is set up so that only a single autoprobe takes place per call.
|
||||
ISA device autoprobes on a running machine are not recommended. */
|
||||
int __init
|
||||
init_module(void)
|
||||
static int __init ultra_init_module(void)
|
||||
{
|
||||
struct net_device *dev;
|
||||
int this_dev, found = 0;
|
||||
@@ -600,6 +598,7 @@ init_module(void)
|
||||
return 0;
|
||||
return -ENXIO;
|
||||
}
|
||||
module_init(ultra_init_module);
|
||||
|
||||
static void cleanup_card(struct net_device *dev)
|
||||
{
|
||||
@@ -613,8 +612,7 @@ static void cleanup_card(struct net_device *dev)
|
||||
iounmap(ei_status.mem);
|
||||
}
|
||||
|
||||
void __exit
|
||||
cleanup_module(void)
|
||||
static void __exit ultra_cleanup_module(void)
|
||||
{
|
||||
int this_dev;
|
||||
|
||||
@@ -627,4 +625,5 @@ cleanup_module(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
module_exit(ultra_cleanup_module);
|
||||
#endif /* MODULE */
|
||||
|
||||
@@ -519,7 +519,7 @@ MODULE_LICENSE("GPL");
|
||||
/* This is set up so that only a single autoprobe takes place per call.
|
||||
ISA device autoprobes on a running machine are not recommended. */
|
||||
|
||||
int __init init_module(void)
|
||||
static int __init wd_init_module(void)
|
||||
{
|
||||
struct net_device *dev;
|
||||
int this_dev, found = 0;
|
||||
@@ -548,6 +548,7 @@ int __init init_module(void)
|
||||
return 0;
|
||||
return -ENXIO;
|
||||
}
|
||||
module_init(wd_init_module);
|
||||
|
||||
static void cleanup_card(struct net_device *dev)
|
||||
{
|
||||
@@ -556,8 +557,7 @@ static void cleanup_card(struct net_device *dev)
|
||||
iounmap(ei_status.mem);
|
||||
}
|
||||
|
||||
void __exit
|
||||
cleanup_module(void)
|
||||
static void __exit wd_cleanup_module(void)
|
||||
{
|
||||
int this_dev;
|
||||
|
||||
@@ -570,4 +570,5 @@ cleanup_module(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
module_exit(wd_cleanup_module);
|
||||
#endif /* MODULE */
|
||||
|
||||
@@ -327,7 +327,7 @@ MODULE_PARM_DESC(dma, "LANCE/PCnet ISA DMA channel (ignored for some devices)");
|
||||
MODULE_PARM_DESC(irq, "LANCE/PCnet IRQ number (ignored for some devices)");
|
||||
MODULE_PARM_DESC(lance_debug, "LANCE/PCnet debug level (0-7)");
|
||||
|
||||
int __init init_module(void)
|
||||
static int __init lance_init_module(void)
|
||||
{
|
||||
struct net_device *dev;
|
||||
int this_dev, found = 0;
|
||||
@@ -356,6 +356,7 @@ int __init init_module(void)
|
||||
return 0;
|
||||
return -ENXIO;
|
||||
}
|
||||
module_init(lance_init_module);
|
||||
|
||||
static void cleanup_card(struct net_device *dev)
|
||||
{
|
||||
@@ -368,7 +369,7 @@ static void cleanup_card(struct net_device *dev)
|
||||
kfree(lp);
|
||||
}
|
||||
|
||||
void __exit cleanup_module(void)
|
||||
static void __exit lance_cleanup_module(void)
|
||||
{
|
||||
int this_dev;
|
||||
|
||||
@@ -381,6 +382,7 @@ void __exit cleanup_module(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
module_exit(lance_cleanup_module);
|
||||
#endif /* MODULE */
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
|
||||
@@ -1230,18 +1230,20 @@ MODULE_PARM_DESC(irq, "ni6510 IRQ number (ignored for some cards)");
|
||||
MODULE_PARM_DESC(io, "ni6510 I/O base address");
|
||||
MODULE_PARM_DESC(dma, "ni6510 ISA DMA channel (ignored for some cards)");
|
||||
|
||||
int __init init_module(void)
|
||||
static int __init ni65_init_module(void)
|
||||
{
|
||||
dev_ni65 = ni65_probe(-1);
|
||||
return PTR_ERR_OR_ZERO(dev_ni65);
|
||||
}
|
||||
module_init(ni65_init_module);
|
||||
|
||||
void __exit cleanup_module(void)
|
||||
static void __exit ni65_cleanup_module(void)
|
||||
{
|
||||
unregister_netdev(dev_ni65);
|
||||
cleanup_card(dev_ni65);
|
||||
free_netdev(dev_ni65);
|
||||
}
|
||||
module_exit(ni65_cleanup_module);
|
||||
#endif /* MODULE */
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
@@ -1753,7 +1753,7 @@ MODULE_LICENSE("GPL");
|
||||
* (hw or software util)
|
||||
*/
|
||||
|
||||
int __init init_module(void)
|
||||
static int __init cs89x0_isa_init_module(void)
|
||||
{
|
||||
struct net_device *dev;
|
||||
struct net_local *lp;
|
||||
@@ -1823,9 +1823,9 @@ out:
|
||||
free_netdev(dev);
|
||||
return ret;
|
||||
}
|
||||
module_init(cs89x0_isa_init_module);
|
||||
|
||||
void __exit
|
||||
cleanup_module(void)
|
||||
static void __exit cs89x0_isa_cleanup_module(void)
|
||||
{
|
||||
struct net_local *lp = netdev_priv(dev_cs89x0);
|
||||
|
||||
@@ -1835,6 +1835,7 @@ cleanup_module(void)
|
||||
release_region(dev_cs89x0->base_addr, NETCARD_IO_EXTENT);
|
||||
free_netdev(dev_cs89x0);
|
||||
}
|
||||
module_exit(cs89x0_isa_cleanup_module);
|
||||
#endif /* MODULE */
|
||||
#endif /* CONFIG_CS89x0_ISA */
|
||||
|
||||
|
||||
@@ -1508,7 +1508,7 @@ MODULE_PARM_DESC(io, "SMC 99194 I/O base address");
|
||||
MODULE_PARM_DESC(irq, "SMC 99194 IRQ number");
|
||||
MODULE_PARM_DESC(ifport, "SMC 99194 interface port (0-default, 1-TP, 2-AUI)");
|
||||
|
||||
int __init init_module(void)
|
||||
static int __init smc_init_module(void)
|
||||
{
|
||||
if (io == 0)
|
||||
printk(KERN_WARNING
|
||||
@@ -1518,13 +1518,15 @@ int __init init_module(void)
|
||||
devSMC9194 = smc_init(-1);
|
||||
return PTR_ERR_OR_ZERO(devSMC9194);
|
||||
}
|
||||
module_init(smc_init_module);
|
||||
|
||||
void __exit cleanup_module(void)
|
||||
static void __exit smc_cleanup_module(void)
|
||||
{
|
||||
unregister_netdev(devSMC9194);
|
||||
free_irq(devSMC9194->irq, devSMC9194);
|
||||
release_region(devSMC9194->base_addr, SMC_IO_EXTENT);
|
||||
free_netdev(devSMC9194);
|
||||
}
|
||||
module_exit(smc_cleanup_module);
|
||||
|
||||
#endif /* MODULE */
|
||||
|
||||
Reference in New Issue
Block a user