[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1369621916-12580-1-git-send-email-libo.chen@huawei.com>
Date: Mon, 27 May 2013 10:31:56 +0800
From: Libo Chen <libo.chen@...wei.com>
To: <mchehab@...hat.com>
CC: <linux-media@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<lizefan@...wei.com>, <libo.chen@...wei.com>,
<gregkh@...uxfoundation.org>
Subject: [PATCH 21/24] 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@...wei.com>
---
drivers/media/pci/pt1/pt1.c | 15 +--------------
1 files changed, 1 insertions(+), 14 deletions(-)
diff --git a/drivers/media/pci/pt1/pt1.c b/drivers/media/pci/pt1/pt1.c
index e921108..75ce142 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 = {
.id_table = pt1_id_table,
};
-
-static int __init pt1_init(void)
-{
- return pci_register_driver(&pt1_driver);
-}
-
-
-static void __exit pt1_cleanup(void)
-{
- pci_unregister_driver(&pt1_driver);
-}
-
-module_init(pt1_init);
-module_exit(pt1_cleanup);
+module_pci_driver(pt1_driver);
MODULE_AUTHOR("Takahito HIRANO <hiranotaka@....info>");
MODULE_DESCRIPTION("Earthsoft PT1/PT2 Driver");
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists