Skip to content

Commit

Permalink
uio/uio_cif: Use module_pci_driver to register driver
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
PeterHuewe authored and gregkh committed May 21, 2013
1 parent b59f9a0 commit ced9017
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions drivers/uio/uio_cif.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,19 +135,7 @@ static struct pci_driver hilscher_pci_driver = {
.remove = hilscher_pci_remove,
};

static int __init hilscher_init_module(void)
{
return pci_register_driver(&hilscher_pci_driver);
}

static void __exit hilscher_exit_module(void)
{
pci_unregister_driver(&hilscher_pci_driver);
}

module_init(hilscher_init_module);
module_exit(hilscher_exit_module);

module_pci_driver(hilscher_pci_driver);
MODULE_DEVICE_TABLE(pci, hilscher_pci_ids);
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger");

0 comments on commit ced9017

Please sign in to comment.