From: Libo Chen Date: Thu, 27 Jun 2013 23:50:51 +0000 (+1000) Subject: drivers/pcmcia/pd6729.c: convert to module_pci_driver X-Git-Tag: next-20130628~3^2~680 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f719462d2c94b2efc438238200384539846e17b5;p=karo-tx-linux.git drivers/pcmcia/pd6729.c: convert to module_pci_driver Use module_pci_driver instead of init/exit, make code clean. Signed-off-by: Libo Chen Cc: Bill Pemberton Cc: Greg Kroah-Hartman Cc: Eric Miao Cc: Dominik Brodowski Signed-off-by: Andrew Morton --- diff --git a/drivers/pcmcia/pd6729.c b/drivers/pcmcia/pd6729.c index a4c16ee5c718..622dd6fe7347 100644 --- a/drivers/pcmcia/pd6729.c +++ b/drivers/pcmcia/pd6729.c @@ -777,15 +777,4 @@ static struct pci_driver pd6729_pci_driver = { .remove = pd6729_pci_remove, }; -static int pd6729_module_init(void) -{ - return pci_register_driver(&pd6729_pci_driver); -} - -static void pd6729_module_exit(void) -{ - pci_unregister_driver(&pd6729_pci_driver); -} - -module_init(pd6729_module_init); -module_exit(pd6729_module_exit); +module_pci_driver(pd6729_pci_driver);