mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
net/ethernet/nvidia/forcedeth: 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. The name of the pci_driver struct had to be changed in order to prevent a build failure. Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
65c21912b5
commit
4f45c40f2c
@ -6340,7 +6340,7 @@ static DEFINE_PCI_DEVICE_TABLE(pci_tbl) = {
|
||||
{0,},
|
||||
};
|
||||
|
||||
static struct pci_driver driver = {
|
||||
static struct pci_driver forcedeth_pci_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = pci_tbl,
|
||||
.probe = nv_probe,
|
||||
@ -6349,16 +6349,6 @@ static struct pci_driver driver = {
|
||||
.driver.pm = NV_PM_OPS,
|
||||
};
|
||||
|
||||
static int __init init_nic(void)
|
||||
{
|
||||
return pci_register_driver(&driver);
|
||||
}
|
||||
|
||||
static void __exit exit_nic(void)
|
||||
{
|
||||
pci_unregister_driver(&driver);
|
||||
}
|
||||
|
||||
module_param(max_interrupt_work, int, 0);
|
||||
MODULE_PARM_DESC(max_interrupt_work, "forcedeth maximum events handled per interrupt");
|
||||
module_param(optimization_mode, int, 0);
|
||||
@ -6379,11 +6369,8 @@ module_param(debug_tx_timeout, bool, 0);
|
||||
MODULE_PARM_DESC(debug_tx_timeout,
|
||||
"Dump tx related registers and ring when tx_timeout happens");
|
||||
|
||||
module_pci_driver(forcedeth_pci_driver);
|
||||
MODULE_AUTHOR("Manfred Spraul <manfred@colorfullife.com>");
|
||||
MODULE_DESCRIPTION("Reverse Engineered nForce ethernet driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
MODULE_DEVICE_TABLE(pci, pci_tbl);
|
||||
|
||||
module_init(init_nic);
|
||||
module_exit(exit_nic);
|
||||
|
Loading…
Reference in New Issue
Block a user