1
0
Fork 0

virtio-pci: 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.

dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
hifive-unleashed-5.1
Wei Yongjun 2012-10-16 23:56:13 +10:30 committed by Rusty Russell
parent 681f206611
commit 1ce6853aa0
1 changed files with 1 additions and 13 deletions

View File

@ -830,16 +830,4 @@ static struct pci_driver virtio_pci_driver = {
#endif
};
static int __init virtio_pci_init(void)
{
return pci_register_driver(&virtio_pci_driver);
}
module_init(virtio_pci_init);
static void __exit virtio_pci_exit(void)
{
pci_unregister_driver(&virtio_pci_driver);
}
module_exit(virtio_pci_exit);
module_pci_driver(virtio_pci_driver);