mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
net/ethernet/sgi/ioc3-eth: Use module_pci_driver to register driver
Removing some boilerplate by using module_pci_driver instead of calling register and unregister in the otherwise empty init/exit functions. Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8dbb0dc2cb
commit
e0fc4441f9
@ -1398,16 +1398,6 @@ static struct pci_driver ioc3_driver = {
|
||||
.remove = ioc3_remove_one,
|
||||
};
|
||||
|
||||
static int __init ioc3_init_module(void)
|
||||
{
|
||||
return pci_register_driver(&ioc3_driver);
|
||||
}
|
||||
|
||||
static void __exit ioc3_cleanup_module(void)
|
||||
{
|
||||
pci_unregister_driver(&ioc3_driver);
|
||||
}
|
||||
|
||||
static int ioc3_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
unsigned long data;
|
||||
@ -1677,9 +1667,7 @@ static void ioc3_set_multicast_list(struct net_device *dev)
|
||||
netif_wake_queue(dev); /* Let us get going again. */
|
||||
}
|
||||
|
||||
module_pci_driver(ioc3_driver);
|
||||
MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
|
||||
MODULE_DESCRIPTION("SGI IOC3 Ethernet driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
module_init(ioc3_init_module);
|
||||
module_exit(ioc3_cleanup_module);
|
||||
|
Loading…
Reference in New Issue
Block a user