mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 01:54:00 +00:00
net: fealnx: use module_pci_driver to simplify the code
Use the module_pci_driver() macro to make the code simpler by eliminating module_init and module_exit calls. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6381c45b28
commit
3cd52c1e32
@ -1948,15 +1948,4 @@ static struct pci_driver fealnx_driver = {
|
|||||||
.remove = fealnx_remove_one,
|
.remove = fealnx_remove_one,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init fealnx_init(void)
|
module_pci_driver(fealnx_driver);
|
||||||
{
|
|
||||||
return pci_register_driver(&fealnx_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit fealnx_exit(void)
|
|
||||||
{
|
|
||||||
pci_unregister_driver(&fealnx_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(fealnx_init);
|
|
||||||
module_exit(fealnx_exit);
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user