diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-26 23:53:06 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2012-03-03 08:43:37 -0500 |
commit | 5d95f8e2dd263f3e05ae4bf9a3309552363e13af (patch) | |
tree | 547831149fd437068b919256d4a6f7e36ddc2926 /drivers/pcmcia/xxs1500_ss.c | |
parent | d571c79e86fa7704265b9127403a78ccd3c01729 (diff) |
pcmcia: convert drivers/pcmcia/* to use module_platform_driver()
This patch converts the drivers in drivers/pcmcia/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Acked-by: Olof Johansson <olof@lixom.net>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Acked-by: Marc Zyngier <maz@misterjones.org> [for the viper part]
Acked-by: Manuel Lauss <manuel.lauss@googlemail.com> [for the db1xxx_ss.c part]
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/xxs1500_ss.c')
-rw-r--r-- | drivers/pcmcia/xxs1500_ss.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/pcmcia/xxs1500_ss.c b/drivers/pcmcia/xxs1500_ss.c index 379f4218857d..1ceff698c654 100644 --- a/drivers/pcmcia/xxs1500_ss.c +++ b/drivers/pcmcia/xxs1500_ss.c | |||
@@ -321,18 +321,7 @@ static struct platform_driver xxs1500_pcmcia_socket_driver = { | |||
321 | .remove = __devexit_p(xxs1500_pcmcia_remove), | 321 | .remove = __devexit_p(xxs1500_pcmcia_remove), |
322 | }; | 322 | }; |
323 | 323 | ||
324 | int __init xxs1500_pcmcia_socket_load(void) | 324 | module_platform_driver(xxs1500_pcmcia_socket_driver); |
325 | { | ||
326 | return platform_driver_register(&xxs1500_pcmcia_socket_driver); | ||
327 | } | ||
328 | |||
329 | void __exit xxs1500_pcmcia_socket_unload(void) | ||
330 | { | ||
331 | platform_driver_unregister(&xxs1500_pcmcia_socket_driver); | ||
332 | } | ||
333 | |||
334 | module_init(xxs1500_pcmcia_socket_load); | ||
335 | module_exit(xxs1500_pcmcia_socket_unload); | ||
336 | 325 | ||
337 | MODULE_LICENSE("GPL"); | 326 | MODULE_LICENSE("GPL"); |
338 | MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems"); | 327 | MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems"); |