* [PATCH 13/24] drivers/uwb/whci: Convert to module_pci_driver
@ 2013-05-27 2:31 Libo Chen
0 siblings, 0 replies; only message in thread
From: Libo Chen @ 2013-05-27 2:31 UTC (permalink / raw)
To: akpm; +Cc: linux-usb, linux-kernel, lizefan, libo.chen, gregkh
use module_pci_driver instead of init/exit, make code clean.
Signed-off-by: Libo Chen <libo.chen@huawei.com>
---
drivers/uwb/whci.c | 13 +------------
1 files changed, 1 insertions(+), 12 deletions(-)
diff --git a/drivers/uwb/whci.c b/drivers/uwb/whci.c
index f48093e..deeeba4 100644
--- a/drivers/uwb/whci.c
+++ b/drivers/uwb/whci.c
@@ -253,18 +253,7 @@ static struct pci_driver whci_driver = {
.remove = whci_remove,
};
-static int __init whci_init(void)
-{
- return pci_register_driver(&whci_driver);
-}
-
-static void __exit whci_exit(void)
-{
- pci_unregister_driver(&whci_driver);
-}
-
-module_init(whci_init);
-module_exit(whci_exit);
+module_pci_driver(whci_driver);
MODULE_DESCRIPTION("WHCI UWB Multi-interface Controller enumerator");
MODULE_AUTHOR("Cambridge Silicon Radio Ltd.");
--
1.7.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-05-27 2:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-27 2:31 [PATCH 13/24] drivers/uwb/whci: Convert to module_pci_driver Libo Chen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome