staging: comedi: das08_cs: consolidate the init and exit functions
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 2 Jul 2012 22:43:19 +0000 (15:43 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Jul 2012 22:51:18 +0000 (15:51 -0700)
The register/unregister of the pcmcia driver is done in separate
functions that are called by the module_{init,exit} routines.
Simplify the code a bit by moving the register/unregister into
the module_{init,exit} routines.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/das08_cs.c

index f62e5f81862ad3e7336598fedb92ef14e87b590d..14dfc81d78c6d82efc771eb558d72a65072095e4 100644 (file)
@@ -235,36 +235,23 @@ struct pcmcia_driver das08_cs_driver = {
        .name = "pcm-das08",
 };
 
-static int __init init_das08_pcmcia_cs(void)
-{
-       pcmcia_register_driver(&das08_cs_driver);
-       return 0;
-}
-
-static void __exit exit_das08_pcmcia_cs(void)
-{
-       pr_debug("das08_pcmcia_cs: unloading\n");
-       pcmcia_unregister_driver(&das08_cs_driver);
-}
-
 static int __init das08_cs_init_module(void)
 {
        int ret;
 
-       ret = init_das08_pcmcia_cs();
+       ret = pcmcia_register_driver(&das08_cs_driver);
        if (ret < 0)
                return ret;
 
        return comedi_driver_register(&driver_das08_cs);
 }
+module_init(das08_cs_init_module);
 
 static void __exit das08_cs_exit_module(void)
 {
-       exit_das08_pcmcia_cs();
+       pcmcia_unregister_driver(&das08_cs_driver);
        comedi_driver_unregister(&driver_das08_cs);
 }
-
-module_init(das08_cs_init_module);
 module_exit(das08_cs_exit_module);
 
 MODULE_AUTHOR("David A. Schleef <ds@schleef.org>, "