mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
net: sundance: 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
02f2743ecd
commit
f670149a4f
@ -1982,17 +1982,4 @@ static struct pci_driver sundance_driver = {
|
||||
.driver.pm = &sundance_pm_ops,
|
||||
};
|
||||
|
||||
static int __init sundance_init(void)
|
||||
{
|
||||
return pci_register_driver(&sundance_driver);
|
||||
}
|
||||
|
||||
static void __exit sundance_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&sundance_driver);
|
||||
}
|
||||
|
||||
module_init(sundance_init);
|
||||
module_exit(sundance_exit);
|
||||
|
||||
|
||||
module_pci_driver(sundance_driver);
|
||||
|
Loading…
x
Reference in New Issue
Block a user