[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1369621926-22548-1-git-send-email-libo.chen@huawei.com>
Date: Mon, 27 May 2013 10:32:06 +0800
From: Libo Chen <libo.chen@...wei.com>
To: <akpm@...ux-foundation.org>
CC: <linux-pcmcia@...ts.infradead.org>, <linux-kernel@...r.kernel.org>,
<lizefan@...wei.com>, <libo.chen@...wei.com>,
<gregkh@...uxfoundation.org>
Subject: [PATCH 24/24] drivers/pcmcia/yenta_socket: 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/pcmcia/yenta_socket.c | 16 +---------------
1 files changed, 1 insertions(+), 15 deletions(-)
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c
index 6b4ff09..dc18a3a 100644
--- a/drivers/pcmcia/yenta_socket.c
+++ b/drivers/pcmcia/yenta_socket.c
@@ -1439,20 +1439,6 @@ static struct pci_driver yenta_cardbus_driver = {
.driver.pm = YENTA_PM_OPS,
};
-
-static int __init yenta_socket_init(void)
-{
- return pci_register_driver(¥ta_cardbus_driver);
-}
-
-
-static void __exit yenta_socket_exit(void)
-{
- pci_unregister_driver(¥ta_cardbus_driver);
-}
-
-
-module_init(yenta_socket_init);
-module_exit(yenta_socket_exit);
+module_pci_driver(yenta_cardbus_driver);
MODULE_LICENSE("GPL");
--
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