From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laurent Pinchart Date: Fri, 15 Mar 2013 12:37:48 +0000 Subject: Re: [PATCH v3] drivers: video: use module_platform_driver_probe() Message-Id: <27269473.thyiPm2NyN@avalon> List-Id: References: <1363338019-13092-1-git-send-email-fabio.porcedda@gmail.com> In-Reply-To: <1363338019-13092-1-git-send-email-fabio.porcedda@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Fabio Porcedda Cc: linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, Florian Tobias Schandinat , Nicolas Ferre , Tomi Valkeinen , David Howells , Geert Uytterhoeven , Kuninori Morimoto Hi Fabio, Thank you for the patch. On Friday 15 March 2013 10:00:19 Fabio Porcedda wrote: > This patch converts the drivers to use the > module_platform_driver_probe() macro which makes the code smaller and > a bit simpler. > > Signed-off-by: Fabio Porcedda > Cc: Florian Tobias Schandinat > Cc: Nicolas Ferre > Cc: Tomi Valkeinen > Cc: David Howells > Cc: Geert Uytterhoeven > Cc: Laurent Pinchart > Cc: Kuninori Morimoto > --- > > Notes: > v3: > - add missing drivers: amifb, atmel_lcdfb, vrfb > - split patch set to each maintainer to easy up respin > v2: > - rebased over linux-next and remove already converted drivers > > drivers/video/amifb.c | 14 +------------- > drivers/video/atmel_lcdfb.c | 13 +------------ > drivers/video/omap2/vrfb.c | 13 +------------ > drivers/video/sh_mipi_dsi.c | 12 +----------- > drivers/video/sh_mobile_hdmi.c | 12 +----------- > 5 files changed, 5 insertions(+), 59 deletions(-) > > diff --git a/drivers/video/amifb.c b/drivers/video/amifb.c > index 7fa1bf8..03e2de2 100644 > --- a/drivers/video/amifb.c > +++ b/drivers/video/amifb.c > @@ -3788,19 +3788,7 @@ static struct platform_driver amifb_driver = { > }, > }; > > -static int __init amifb_init(void) > -{ > - return platform_driver_probe(&amifb_driver, amifb_probe); > -} > - > -module_init(amifb_init); > - > -static void __exit amifb_exit(void) > -{ > - platform_driver_unregister(&amifb_driver); > -} > - > -module_exit(amifb_exit); > +return module_platform_driver_probe(amifb_driver, amifb_probe); I think think you need a "return" here. After fixing that, Acked-by: Laurent Pinchart > MODULE_LICENSE("GPL"); > MODULE_ALIAS("platform:amiga-video"); -- Regards, Laurent Pinchart