aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/bluecard_cs.c
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2013-03-06 13:26:24 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-15 15:26:04 -0400
commite0c005f4b9fe8bb2bceb5ce9f69eaa61383f41db (patch)
treecb1f2098b3b523a0081dc58d70f86a899582b7b2 /drivers/bluetooth/bluecard_cs.c
parent460604850a0cfcdb124fa627f56ca91529fb6c59 (diff)
drivers/bluetooth: 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 'drivers/bluetooth/bluecard_cs.c')
-rw-r--r--drivers/bluetooth/bluecard_cs.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c
index 0d26851d6e49..6c3e3d43c718 100644
--- a/drivers/bluetooth/bluecard_cs.c
+++ b/drivers/bluetooth/bluecard_cs.c
@@ -934,17 +934,4 @@ static struct pcmcia_driver bluecard_driver = {
934 .remove = bluecard_detach, 934 .remove = bluecard_detach,
935 .id_table = bluecard_ids, 935 .id_table = bluecard_ids,
936}; 936};
937 937module_pcmcia_driver(bluecard_driver);
938static int __init init_bluecard_cs(void)
939{
940 return pcmcia_register_driver(&bluecard_driver);
941}
942
943
944static void __exit exit_bluecard_cs(void)
945{
946 pcmcia_unregister_driver(&bluecard_driver);
947}
948
949module_init(init_bluecard_cs);
950module_exit(exit_bluecard_cs);