sound/pcmcia: use module_pcmcia_driver() in pcmcia drivers

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>
This commit is contained in:
H Hartley Sweeten 2013-03-06 11:29:42 -07:00 committed by Greg Kroah-Hartman
parent 4c7a45fb1b
commit b85c4a18f6
2 changed files with 2 additions and 27 deletions

View File

@ -295,18 +295,5 @@ static struct pcmcia_driver pdacf_cs_driver = {
.suspend = pdacf_suspend,
.resume = pdacf_resume,
#endif
};
static int __init init_pdacf(void)
{
return pcmcia_register_driver(&pdacf_cs_driver);
}
static void __exit exit_pdacf(void)
{
pcmcia_unregister_driver(&pdacf_cs_driver);
}
module_init(init_pdacf);
module_exit(exit_pdacf);
module_pcmcia_driver(pdacf_cs_driver);

View File

@ -367,16 +367,4 @@ static struct pcmcia_driver vxp_cs_driver = {
.resume = vxp_resume,
#endif
};
static int __init init_vxpocket(void)
{
return pcmcia_register_driver(&vxp_cs_driver);
}
static void __exit exit_vxpocket(void)
{
pcmcia_unregister_driver(&vxp_cs_driver);
}
module_init(init_vxpocket);
module_exit(exit_vxpocket);
module_pcmcia_driver(vxp_cs_driver);