Commit b85c4a18 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4c7a45fb
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -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);
+1 −13
Original line number Diff line number Diff line
@@ -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);