Skip to content

Commit

Permalink
drivers/mmc: use module_pcmcia_driver() in pcmcia drivers
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Mar 15, 2013
1 parent 0aae9c6 commit fe14114
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions drivers/mmc/host/sdricoh_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,25 +543,7 @@ static struct pcmcia_driver sdricoh_driver = {
.suspend = sdricoh_pcmcia_suspend,
.resume = sdricoh_pcmcia_resume,
};

/*****************************************************************************\
* *
* Driver init/exit *
* *
\*****************************************************************************/

static int __init sdricoh_drv_init(void)
{
return pcmcia_register_driver(&sdricoh_driver);
}

static void __exit sdricoh_drv_exit(void)
{
pcmcia_unregister_driver(&sdricoh_driver);
}

module_init(sdricoh_drv_init);
module_exit(sdricoh_drv_exit);
module_pcmcia_driver(sdricoh_driver);

module_param(switchlocked, uint, 0444);

Expand Down

0 comments on commit fe14114

Please sign in to comment.