mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
uio/uio_netx: 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
8bcaec4ee2
commit
b59f9a0533
@ -174,19 +174,7 @@ static struct pci_driver netx_pci_driver = {
|
||||
.remove = netx_pci_remove,
|
||||
};
|
||||
|
||||
static int __init netx_init_module(void)
|
||||
{
|
||||
return pci_register_driver(&netx_pci_driver);
|
||||
}
|
||||
|
||||
static void __exit netx_exit_module(void)
|
||||
{
|
||||
pci_unregister_driver(&netx_pci_driver);
|
||||
}
|
||||
|
||||
module_init(netx_init_module);
|
||||
module_exit(netx_exit_module);
|
||||
|
||||
module_pci_driver(netx_pci_driver);
|
||||
MODULE_DEVICE_TABLE(pci, netx_pci_ids);
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_AUTHOR("Hans J. Koch, Manuel Traut");
|
||||
|
Loading…
Reference in New Issue
Block a user