aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2013-03-06 13:29:17 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-15 15:26:38 -0400
commit4c7a45fb1bf683357e5222e664aaee80390051f4 (patch)
treef406662e2c69ce4c4529f2618f8553109f3dcac7
parent5339102c778bab379b4ec6348a184481dc7ad614 (diff)
drivers/usb: 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/usb/host/sl811_cs.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c
index 3b6f50eaec91..469564e57a52 100644
--- a/drivers/usb/host/sl811_cs.c
+++ b/drivers/usb/host/sl811_cs.c
@@ -200,17 +200,4 @@ static struct pcmcia_driver sl811_cs_driver = {
200 .remove = sl811_cs_detach, 200 .remove = sl811_cs_detach,
201 .id_table = sl811_ids, 201 .id_table = sl811_ids,
202}; 202};
203 203module_pcmcia_driver(sl811_cs_driver);
204/*====================================================================*/
205
206static int __init init_sl811_cs(void)
207{
208 return pcmcia_register_driver(&sl811_cs_driver);
209}
210module_init(init_sl811_cs);
211
212static void __exit exit_sl811_cs(void)
213{
214 pcmcia_unregister_driver(&sl811_cs_driver);
215}
216module_exit(exit_sl811_cs);