From: Wei Yongjun Date: Wed, 7 Apr 2021 15:07:07 +0000 (+0000) Subject: tulip: windbond-840: use module_pci_driver to simplify the code X-Git-Tag: v5.13-rc1~94^2~209 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=95b2fbdb9321168fc557fdc4a5d58c9bf9d13fef;p=linux-platform-drivers-x86.git tulip: windbond-840: 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/dec/tulip/winbond-840.c b/drivers/net/ethernet/dec/tulip/winbond-840.c index 89cbdc1f4857..514df170ec5d 100644 --- a/drivers/net/ethernet/dec/tulip/winbond-840.c +++ b/drivers/net/ethernet/dec/tulip/winbond-840.c @@ -1629,15 +1629,4 @@ static struct pci_driver w840_driver = { .driver.pm = &w840_pm_ops, }; -static int __init w840_init(void) -{ - return pci_register_driver(&w840_driver); -} - -static void __exit w840_exit(void) -{ - pci_unregister_driver(&w840_driver); -} - -module_init(w840_init); -module_exit(w840_exit); +module_pci_driver(w840_driver);