aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uio/uio_sercos3.c
diff options
context:
space:
mode:
authorPeter Huewe <peterhuewe@gmx.de>2013-05-20 16:47:44 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-21 13:10:41 -0400
commit8bcaec4ee2451937278aab5a655739ad73f25de6 (patch)
tree68c2715056b783599df3f5760b7f524ae8a80138 /drivers/uio/uio_sercos3.c
parentaa8c06f7c9471f5722faa14ec8b887989de1226d (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.c14
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
229static int __init sercos3_init_module(void) 229module_pci_driver(sercos3_pci_driver);
230{
231 return pci_register_driver(&sercos3_pci_driver);
232}
233
234static void __exit sercos3_exit_module(void)
235{
236 pci_unregister_driver(&sercos3_pci_driver);
237}
238
239module_init(sercos3_init_module);
240module_exit(sercos3_exit_module);
241
242MODULE_DESCRIPTION("UIO driver for the Automata Sercos III PCI card"); 230MODULE_DESCRIPTION("UIO driver for the Automata Sercos III PCI card");
243MODULE_AUTHOR("John Ogness <john.ogness@linutronix.de>"); 231MODULE_AUTHOR("John Ogness <john.ogness@linutronix.de>");
244MODULE_LICENSE("GPL v2"); 232MODULE_LICENSE("GPL v2");