aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/mvsdio.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-03-04 22:54:06 -0500
committerChris Ball <cjb@laptop.org>2013-03-22 12:29:12 -0400
commit4a2d8ecce0be8240618e133077724abb5b36c1ef (patch)
tree728dd6a220cb8862e87c078de082bfce991ee3ab /drivers/mmc/host/mvsdio.c
parentd4bf63251c530be61ae7906dc67ace3af36ff3db (diff)
mmc: mvsdio: use module_platform_driver_probe()
This patch uses module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/mvsdio.c')
-rw-r--r--drivers/mmc/host/mvsdio.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mmc/host/mvsdio.c b/drivers/mmc/host/mvsdio.c
index 145cdaf000d1..2b7d5b72c7bb 100644
--- a/drivers/mmc/host/mvsdio.c
+++ b/drivers/mmc/host/mvsdio.c
@@ -881,18 +881,7 @@ static struct platform_driver mvsd_driver = {
881 }, 881 },
882}; 882};
883 883
884static int __init mvsd_init(void) 884module_platform_driver_probe(mvsd_driver, mvsd_probe);
885{
886 return platform_driver_probe(&mvsd_driver, mvsd_probe);
887}
888
889static void __exit mvsd_exit(void)
890{
891 platform_driver_unregister(&mvsd_driver);
892}
893
894module_init(mvsd_init);
895module_exit(mvsd_exit);
896 885
897/* maximum card clock frequency (default 50MHz) */ 886/* maximum card clock frequency (default 50MHz) */
898module_param(maxfreq, int, 0); 887module_param(maxfreq, int, 0);