diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2013-05-20 16:47:44 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-21 13:10:41 -0400 |
commit | 8bcaec4ee2451937278aab5a655739ad73f25de6 (patch) | |
tree | 68c2715056b783599df3f5760b7f524ae8a80138 /drivers/uio/uio_sercos3.c | |
parent | aa8c06f7c9471f5722faa14ec8b887989de1226d (diff) |
uio/uio_sercos3: 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/uio_sercos3.c')
-rw-r--r-- | drivers/uio/uio_sercos3.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/uio/uio_sercos3.c b/drivers/uio/uio_sercos3.c index 81a10a563120..541983217085 100644 --- a/drivers/uio/uio_sercos3.c +++ b/drivers/uio/uio_sercos3.c | |||
@@ -226,19 +226,7 @@ static struct pci_driver sercos3_pci_driver = { | |||
226 | .remove = sercos3_pci_remove, | 226 | .remove = sercos3_pci_remove, |
227 | }; | 227 | }; |
228 | 228 | ||
229 | static int __init sercos3_init_module(void) | 229 | module_pci_driver(sercos3_pci_driver); |
230 | { | ||
231 | return pci_register_driver(&sercos3_pci_driver); | ||
232 | } | ||
233 | |||
234 | static void __exit sercos3_exit_module(void) | ||
235 | { | ||
236 | pci_unregister_driver(&sercos3_pci_driver); | ||
237 | } | ||
238 | |||
239 | module_init(sercos3_init_module); | ||
240 | module_exit(sercos3_exit_module); | ||
241 | |||
242 | MODULE_DESCRIPTION("UIO driver for the Automata Sercos III PCI card"); | 230 | MODULE_DESCRIPTION("UIO driver for the Automata Sercos III PCI card"); |
243 | MODULE_AUTHOR("John Ogness <john.ogness@linutronix.de>"); | 231 | MODULE_AUTHOR("John Ogness <john.ogness@linutronix.de>"); |
244 | MODULE_LICENSE("GPL v2"); | 232 | MODULE_LICENSE("GPL v2"); |