diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-03-05 12:54:06 +0900 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-03-22 12:29:12 -0400 |
commit | 4a2d8ecce0be8240618e133077724abb5b36c1ef (patch) | |
tree | 728dd6a220cb8862e87c078de082bfce991ee3ab /drivers/mmc | |
parent | d4bf63251c530be61ae7906dc67ace3af36ff3db (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')
-rw-r--r-- | drivers/mmc/host/mvsdio.c | 13 |
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 = { }, }; -static int __init mvsd_init(void) -{ - return platform_driver_probe(&mvsd_driver, mvsd_probe); -} - -static void __exit mvsd_exit(void) -{ - platform_driver_unregister(&mvsd_driver); -} - -module_init(mvsd_init); -module_exit(mvsd_exit); +module_platform_driver_probe(mvsd_driver, mvsd_probe); /* maximum card clock frequency (default 50MHz) */ module_param(maxfreq, int, 0); |