diff options
author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2013-03-06 13:28:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-15 15:26:38 -0400 |
commit | f23e79688c1469b13ac33420efbc974b6772564f (patch) | |
tree | 58cfdf7814ce60309ad088c9745b692866ea95de | |
parent | fe141149bffeaaaae214b6fbb98b592d3c516fb5 (diff) |
drivers/parport: 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>
-rw-r--r-- | drivers/parport/parport_cs.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/parport/parport_cs.c b/drivers/parport/parport_cs.c index 067ad517c1f5..e9b52e4a4648 100644 --- a/drivers/parport/parport_cs.c +++ b/drivers/parport/parport_cs.c | |||
@@ -193,16 +193,4 @@ static struct pcmcia_driver parport_cs_driver = { | |||
193 | .remove = parport_detach, | 193 | .remove = parport_detach, |
194 | .id_table = parport_ids, | 194 | .id_table = parport_ids, |
195 | }; | 195 | }; |
196 | 196 | module_pcmcia_driver(parport_cs_driver); | |
197 | static int __init init_parport_cs(void) | ||
198 | { | ||
199 | return pcmcia_register_driver(&parport_cs_driver); | ||
200 | } | ||
201 | |||
202 | static void __exit exit_parport_cs(void) | ||
203 | { | ||
204 | pcmcia_unregister_driver(&parport_cs_driver); | ||
205 | } | ||
206 | |||
207 | module_init(init_parport_cs); | ||
208 | module_exit(exit_parport_cs); | ||