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

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

uwb/whci: 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 47ac5b6e
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -253,19 +253,7 @@ static struct pci_driver whci_driver = {
	.remove   = whci_remove,
};

static int __init whci_init(void)
{
	return pci_register_driver(&whci_driver);
}

static void __exit whci_exit(void)
{
	pci_unregister_driver(&whci_driver);
}

module_init(whci_init);
module_exit(whci_exit);

module_pci_driver(whci_driver);
MODULE_DESCRIPTION("WHCI UWB Multi-interface Controller enumerator");
MODULE_AUTHOR("Cambridge Silicon Radio Ltd.");
MODULE_LICENSE("GPL");