mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 08:26:48 +07:00
net/ethernet/dec/tulip/xircom_cb: 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> Reviewed-by: Grant Grundler <grundler@parisc-linux.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
52a58f9df1
commit
31d60ebfbe
@ -1171,16 +1171,4 @@ investigate_write_descriptor(struct net_device *dev,
|
||||
}
|
||||
}
|
||||
|
||||
static int __init xircom_init(void)
|
||||
{
|
||||
return pci_register_driver(&xircom_ops);
|
||||
}
|
||||
|
||||
static void __exit xircom_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&xircom_ops);
|
||||
}
|
||||
|
||||
module_init(xircom_init)
|
||||
module_exit(xircom_exit)
|
||||
|
||||
module_pci_driver(xircom_ops);
|
||||
|
Loading…
Reference in New Issue
Block a user