]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: arcnet: com20020-pci: use module_pci_driver
authorEthan Nelson-Moore <enelsonmoore@gmail.com>
Thu, 5 Feb 2026 07:06:31 +0000 (23:06 -0800)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 10 Feb 2026 09:16:33 +0000 (10:16 +0100)
The only thing this driver's init/exit functions do is call
pci_register/unregister_driver, and in the case of the init function,
print an unnecessary message. Replace them with module_pci_driver to
simplify the code.

Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20260205070632.37516-1-enelsonmoore@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/arcnet/com20020-pci.c

index 0472bcdff130729a491c2072f2ea9c8b289cd582..19e411b2e3a775729beb297be10d15232f22fa08 100644 (file)
@@ -618,17 +618,4 @@ static struct pci_driver com20020pci_driver = {
        .remove         = com20020pci_remove,
 };
 
-static int __init com20020pci_init(void)
-{
-       if (BUGLVL(D_NORMAL))
-               pr_info("%s\n", "COM20020 PCI support");
-       return pci_register_driver(&com20020pci_driver);
-}
-
-static void __exit com20020pci_cleanup(void)
-{
-       pci_unregister_driver(&com20020pci_driver);
-}
-
-module_init(com20020pci_init)
-module_exit(com20020pci_cleanup)
+module_pci_driver(com20020pci_driver);