summaryrefslogtreecommitdiff
path: root/drivers/media/pci/b2c2
diff options
context:
space:
mode:
authorLibo Chen <libo.chen@huawei.com>2013-05-26 22:31:43 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-17 13:13:55 -0300
commit2c5f81d29c946165ae01c15e70b1bf2e16929009 (patch)
treebfec4ec35b15e6e488ebd13bc6ed30e2fcc0f058 /drivers/media/pci/b2c2
parente7be28cbfd8b150c5997efc88ed9727b68e636d3 (diff)
[media] drivers/media/pci/dm1105/dm1105: Convert to module_pci_driver
use module_pci_driver instead of init/exit, make code clean. Signed-off-by: Libo Chen <libo.chen@huawei.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/pci/b2c2')
-rw-r--r--drivers/media/pci/b2c2/flexcop-pci.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/media/pci/b2c2/flexcop-pci.c b/drivers/media/pci/b2c2/flexcop-pci.c
index 44f8fb5f17ff..447afbd904a4 100644
--- a/drivers/media/pci/b2c2/flexcop-pci.c
+++ b/drivers/media/pci/b2c2/flexcop-pci.c
@@ -432,18 +432,7 @@ static struct pci_driver flexcop_pci_driver = {
.remove = flexcop_pci_remove,
};
-static int __init flexcop_pci_module_init(void)
-{
- return pci_register_driver(&flexcop_pci_driver);
-}
-
-static void __exit flexcop_pci_module_exit(void)
-{
- pci_unregister_driver(&flexcop_pci_driver);
-}
-
-module_init(flexcop_pci_module_init);
-module_exit(flexcop_pci_module_exit);
+module_pci_driver(flexcop_pci_driver);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_NAME);