Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa8c06f7 authored by Peter Huewe's avatar Peter Huewe Committed by Greg Kroah-Hartman
Browse files

uio/uio_aec: Use module_pci_driver to register driver



Removing some boilerplate by using module_pci_driver instead of calling
register and unregister in the otherwise empty init/exit functions.

Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9db5c908
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -160,17 +160,5 @@ static struct pci_driver pci_driver = {
	.remove = remove,
};

static int __init aectc_init(void)
{
	return pci_register_driver(&pci_driver);
}

static void __exit aectc_exit(void)
{
	pci_unregister_driver(&pci_driver);
}

module_pci_driver(pci_driver);
MODULE_LICENSE("GPL");

module_init(aectc_init);
module_exit(aectc_exit);