diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2013-05-20 16:47:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-21 13:10:41 -0400 |
commit | ced9017a4fc7ecf35a9c0c0bd8e46d14876b9fd1 (patch) | |
tree | 441ff9388b72cbcd78ac73036ec654a4fa04151c /drivers/uio | |
parent | b59f9a0533110f236a15bbbf81a2b7a7bffa8ed4 (diff) |
uio/uio_cif: 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>
Diffstat (limited to 'drivers/uio')
-rw-r--r-- | drivers/uio/uio_cif.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/uio/uio_cif.c b/drivers/uio/uio_cif.c index 7dd6fc60539d..22cdf385ab33 100644 --- a/drivers/uio/uio_cif.c +++ b/drivers/uio/uio_cif.c | |||
@@ -135,19 +135,7 @@ static struct pci_driver hilscher_pci_driver = { | |||
135 | .remove = hilscher_pci_remove, | 135 | .remove = hilscher_pci_remove, |
136 | }; | 136 | }; |
137 | 137 | ||
138 | static int __init hilscher_init_module(void) | 138 | module_pci_driver(hilscher_pci_driver); |
139 | { | ||
140 | return pci_register_driver(&hilscher_pci_driver); | ||
141 | } | ||
142 | |||
143 | static void __exit hilscher_exit_module(void) | ||
144 | { | ||
145 | pci_unregister_driver(&hilscher_pci_driver); | ||
146 | } | ||
147 | |||
148 | module_init(hilscher_init_module); | ||
149 | module_exit(hilscher_exit_module); | ||
150 | |||
151 | MODULE_DEVICE_TABLE(pci, hilscher_pci_ids); | 139 | MODULE_DEVICE_TABLE(pci, hilscher_pci_ids); |
152 | MODULE_LICENSE("GPL v2"); | 140 | MODULE_LICENSE("GPL v2"); |
153 | MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger"); | 141 | MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger"); |