summaryrefslogtreecommitdiffstats
path: root/drivers/pcmcia
diff options
context:
space:
mode:
authorFabio Porcedda <fabio.porcedda@gmail.com>2013-06-06 04:24:19 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-06 15:57:42 -0400
commit43f50752256d8374602559832eaddd0cbf5aad64 (patch)
tree671e560313d47c750411fdd1be828921bb1361a9 /drivers/pcmcia
parented9084ecfccae55ea45c7f068d1f513b979a0132 (diff)
pcmcia: at91_cf: use module_platform_driver_probe()
Use module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r--drivers/pcmcia/at91_cf.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/pcmcia/at91_cf.c b/drivers/pcmcia/at91_cf.c
index 149b95c957da..8ddc57c5bc47 100644
--- a/drivers/pcmcia/at91_cf.c
+++ b/drivers/pcmcia/at91_cf.c
@@ -411,17 +411,7 @@ static struct platform_driver at91_cf_driver = {
411 411
412/*--------------------------------------------------------------------------*/ 412/*--------------------------------------------------------------------------*/
413 413
414static int __init at91_cf_init(void) 414module_platform_driver_probe(at91_cf_driver, at91_cf_probe);
415{
416 return platform_driver_probe(&at91_cf_driver, at91_cf_probe);
417}
418module_init(at91_cf_init);
419
420static void __exit at91_cf_exit(void)
421{
422 platform_driver_unregister(&at91_cf_driver);
423}
424module_exit(at91_cf_exit);
425 415
426MODULE_DESCRIPTION("AT91 Compact Flash Driver"); 416MODULE_DESCRIPTION("AT91 Compact Flash Driver");
427MODULE_AUTHOR("David Brownell"); 417MODULE_AUTHOR("David Brownell");