forked from Minki/linux
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: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
47ac5b6e40
commit
c0c6e07949
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user