mirror of https://gitee.com/openkylin/linux.git
realtek: r8169: use module_pci_driver macro
use the module_pci_driver macro to make the code simpler by eliminating the module_init and module_exit calls Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
157083811c
commit
3eeb7da909
|
@ -7023,15 +7023,4 @@ static struct pci_driver rtl8169_pci_driver = {
|
||||||
.driver.pm = RTL8169_PM_OPS,
|
.driver.pm = RTL8169_PM_OPS,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init rtl8169_init_module(void)
|
module_pci_driver(rtl8169_pci_driver);
|
||||||
{
|
|
||||||
return pci_register_driver(&rtl8169_pci_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit rtl8169_cleanup_module(void)
|
|
||||||
{
|
|
||||||
pci_unregister_driver(&rtl8169_pci_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(rtl8169_init_module);
|
|
||||||
module_exit(rtl8169_cleanup_module);
|
|
||||||
|
|
Loading…
Reference in New Issue