mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
net: ethernet: 8390: ne2k-pci: use module_pci_driver() macro
The driver init/exit() function don't do anything special, it can use the module_pci_driver() macro to eliminate boilerplate code. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Reviewed-by: Pavan Chebbi <pavan.chebbi@broadcom.com> Link: https://lore.kernel.org/r/20230810014633.3084355-1-yangyingliang@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
afa2420cff
commit
5604ac35cb
@ -731,18 +731,4 @@ static struct pci_driver ne2k_driver = {
|
||||
.id_table = ne2k_pci_tbl,
|
||||
.driver.pm = &ne2k_pci_pm_ops,
|
||||
};
|
||||
|
||||
|
||||
static int __init ne2k_pci_init(void)
|
||||
{
|
||||
return pci_register_driver(&ne2k_driver);
|
||||
}
|
||||
|
||||
|
||||
static void __exit ne2k_pci_cleanup(void)
|
||||
{
|
||||
pci_unregister_driver(&ne2k_driver);
|
||||
}
|
||||
|
||||
module_init(ne2k_pci_init);
|
||||
module_exit(ne2k_pci_cleanup);
|
||||
module_pci_driver(ne2k_driver);
|
||||
|
Loading…
x
Reference in New Issue
Block a user