* [PATCH] uio: uio_sercos3: use module_pci_driver macro
@ 2012-12-31 18:37 Devendra Naga
0 siblings, 0 replies; only message in thread
From: Devendra Naga @ 2012-12-31 18:37 UTC (permalink / raw)
To: John Ogness, Hans J. Koch, Greg Kroah-Hartman, linux-kernel; +Cc: Devendra Naga
use module_pci_driver macro and simplify the module init and exit code
Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
---
drivers/uio/uio_sercos3.c | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/drivers/uio/uio_sercos3.c b/drivers/uio/uio_sercos3.c
index 81a10a5..5419832 100644
--- a/drivers/uio/uio_sercos3.c
+++ b/drivers/uio/uio_sercos3.c
@@ -226,19 +226,7 @@ static struct pci_driver sercos3_pci_driver = {
.remove = sercos3_pci_remove,
};
-static int __init sercos3_init_module(void)
-{
- return pci_register_driver(&sercos3_pci_driver);
-}
-
-static void __exit sercos3_exit_module(void)
-{
- pci_unregister_driver(&sercos3_pci_driver);
-}
-
-module_init(sercos3_init_module);
-module_exit(sercos3_exit_module);
-
+module_pci_driver(sercos3_pci_driver);
MODULE_DESCRIPTION("UIO driver for the Automata Sercos III PCI card");
MODULE_AUTHOR("John Ogness <john.ogness@linutronix.de>");
MODULE_LICENSE("GPL v2");
--
1.7.10.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-12-31 18:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-31 18:37 [PATCH] uio: uio_sercos3: use module_pci_driver macro Devendra Naga
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.