aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibo Chen <libo.chen@huawei.com>2013-05-26 21:31:56 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-17 12:13:34 -0400
commite7be28cbfd8b150c5997efc88ed9727b68e636d3 (patch)
treeeaa590fcf415afe4b9e19d28c29ad28339a73b0c
parent5077ac3b8108007f4a2b4589f2d373cf55453206 (diff)
[media] drivers/media/pci/pt1/pt1: 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>
-rw-r--r--drivers/media/pci/pt1/pt1.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/media/pci/pt1/pt1.c b/drivers/media/pci/pt1/pt1.c
index e9211086df49..75ce14229e03 100644
--- a/drivers/media/pci/pt1/pt1.c
+++ b/drivers/media/pci/pt1/pt1.c
@@ -1225,20 +1225,7 @@ static struct pci_driver pt1_driver = {
1225 .id_table = pt1_id_table, 1225 .id_table = pt1_id_table,
1226}; 1226};
1227 1227
1228 1228module_pci_driver(pt1_driver);
1229static int __init pt1_init(void)
1230{
1231 return pci_register_driver(&pt1_driver);
1232}
1233
1234
1235static void __exit pt1_cleanup(void)
1236{
1237 pci_unregister_driver(&pt1_driver);
1238}
1239
1240module_init(pt1_init);
1241module_exit(pt1_cleanup);
1242 1229
1243MODULE_AUTHOR("Takahito HIRANO <hiranotaka@zng.info>"); 1230MODULE_AUTHOR("Takahito HIRANO <hiranotaka@zng.info>");
1244MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver"); 1231MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver");