Hi, On Mon, Mar 04 2013, Jingoo Han wrote: > This patch uses module_platform_driver_probe() macro which makes > the code smaller and simpler. > > Signed-off-by: Jingoo Han <jg1.han@xxxxxxxxxxx> > --- > 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 145cdaf..2b7d5b7 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); Thanks, pushed to mmc-next for 3.10. - Chris. -- Chris Ball <cjb@xxxxxxxxxx> <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html