aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pcmcia
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2013-03-06 13:29:42 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-15 15:26:39 -0400
commitb85c4a18f6543873eaa71772f6252bc4d403eeb2 (patch)
treeb68316d77b60de57be507eb57673d3558bd7aba4 /sound/pcmcia
parent4c7a45fb1bf683357e5222e664aaee80390051f4 (diff)
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>
Diffstat (limited to 'sound/pcmcia')
-rw-r--r--sound/pcmcia/pdaudiocf/pdaudiocf.c15
-rw-r--r--sound/pcmcia/vx/vxpocket.c14
2 files changed, 2 insertions, 27 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c
index f9b5229b2723..8f489de5c4c6 100644
--- a/sound/pcmcia/pdaudiocf/pdaudiocf.c
+++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c
@@ -295,18 +295,5 @@ static struct pcmcia_driver pdacf_cs_driver = {
295 .suspend = pdacf_suspend, 295 .suspend = pdacf_suspend,
296 .resume = pdacf_resume, 296 .resume = pdacf_resume,
297#endif 297#endif
298
299}; 298};
300 299module_pcmcia_driver(pdacf_cs_driver);
301static int __init init_pdacf(void)
302{
303 return pcmcia_register_driver(&pdacf_cs_driver);
304}
305
306static void __exit exit_pdacf(void)
307{
308 pcmcia_unregister_driver(&pdacf_cs_driver);
309}
310
311module_init(init_pdacf);
312module_exit(exit_pdacf);
diff --git a/sound/pcmcia/vx/vxpocket.c b/sound/pcmcia/vx/vxpocket.c
index 8f9350475c7b..d4db7ecaa6bf 100644
--- a/sound/pcmcia/vx/vxpocket.c
+++ b/sound/pcmcia/vx/vxpocket.c
@@ -367,16 +367,4 @@ static struct pcmcia_driver vxp_cs_driver = {
367 .resume = vxp_resume, 367 .resume = vxp_resume,
368#endif 368#endif
369}; 369};
370 370module_pcmcia_driver(vxp_cs_driver);
371static int __init init_vxpocket(void)
372{
373 return pcmcia_register_driver(&vxp_cs_driver);
374}
375
376static void __exit exit_vxpocket(void)
377{
378 pcmcia_unregister_driver(&vxp_cs_driver);
379}
380
381module_init(init_vxpocket);
382module_exit(exit_vxpocket);