drivers/ata: use module_pcmcia_driver() in pcmcia drivers
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 6 Mar 2013 18:25:44 +0000 (11:25 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Mar 2013 19:26:03 +0000 (12:26 -0700)
Use the new module_pcmcia_driver() macro to remove the boilerplate
module init/exit code in the pcmcia drivers.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/ata/pata_pcmcia.c

index 958238dda8fcec12ad21295e85497f851af68b54..40254f4df584f781100476dbd391941148042fc8 100644 (file)
@@ -387,21 +387,9 @@ static struct pcmcia_driver pcmcia_driver = {
        .probe          = pcmcia_init_one,
        .remove         = pcmcia_remove_one,
 };
-
-static int __init pcmcia_init(void)
-{
-       return pcmcia_register_driver(&pcmcia_driver);
-}
-
-static void __exit pcmcia_exit(void)
-{
-       pcmcia_unregister_driver(&pcmcia_driver);
-}
+module_pcmcia_driver(pcmcia_driver);
 
 MODULE_AUTHOR("Alan Cox");
 MODULE_DESCRIPTION("low-level driver for PCMCIA ATA");
 MODULE_LICENSE("GPL");
 MODULE_VERSION(DRV_VERSION);
-
-module_init(pcmcia_init);
-module_exit(pcmcia_exit);