[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1369621913-30532-1-git-send-email-libo.chen@huawei.com>
Date: Mon, 27 May 2013 10:31:53 +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 20/24] drivers/media/pci/pluto2/pluto2: 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/pluto2/pluto2.c | 13 +------------
1 files changed, 1 insertions(+), 12 deletions(-)
diff --git a/drivers/media/pci/pluto2/pluto2.c b/drivers/media/pci/pluto2/pluto2.c
index 2290fae..4938285 100644
--- a/drivers/media/pci/pluto2/pluto2.c
+++ b/drivers/media/pci/pluto2/pluto2.c
@@ -796,18 +796,7 @@ static struct pci_driver pluto2_driver = {
.remove = pluto2_remove,
};
-static int __init pluto2_init(void)
-{
- return pci_register_driver(&pluto2_driver);
-}
-
-static void __exit pluto2_exit(void)
-{
- pci_unregister_driver(&pluto2_driver);
-}
-
-module_init(pluto2_init);
-module_exit(pluto2_exit);
+module_pci_driver(pluto2_driver);
MODULE_AUTHOR("Andreas Oberritter <obi@...uxtv.org>");
MODULE_DESCRIPTION("Pluto2 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