diff options
author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2013-03-06 13:26:50 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-15 15:26:04 -0400 |
commit | 0aae9c6a913483b69b5cb703329cbf1ed3efbfcb (patch) | |
tree | 94a769f3932c391e6f316827b9a53da27fcbd332 /drivers/isdn/hisax/avma1_cs.c | |
parent | e0c005f4b9fe8bb2bceb5ce9f69eaa61383f41db (diff) |
drivers/isdn: 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/isdn/hisax/avma1_cs.c')
-rw-r--r-- | drivers/isdn/hisax/avma1_cs.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/isdn/hisax/avma1_cs.c b/drivers/isdn/hisax/avma1_cs.c index 4e676bcf8506..baad94ec1f4a 100644 --- a/drivers/isdn/hisax/avma1_cs.c +++ b/drivers/isdn/hisax/avma1_cs.c | |||
@@ -159,16 +159,4 @@ static struct pcmcia_driver avma1cs_driver = { | |||
159 | .remove = avma1cs_detach, | 159 | .remove = avma1cs_detach, |
160 | .id_table = avma1cs_ids, | 160 | .id_table = avma1cs_ids, |
161 | }; | 161 | }; |
162 | 162 | module_pcmcia_driver(avma1cs_driver); | |
163 | static int __init init_avma1_cs(void) | ||
164 | { | ||
165 | return pcmcia_register_driver(&avma1cs_driver); | ||
166 | } | ||
167 | |||
168 | static void __exit exit_avma1_cs(void) | ||
169 | { | ||
170 | pcmcia_unregister_driver(&avma1cs_driver); | ||
171 | } | ||
172 | |||
173 | module_init(init_avma1_cs); | ||
174 | module_exit(exit_avma1_cs); | ||