aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/sh7760fb.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-11-25 21:25:54 -0500
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2011-12-03 17:08:42 -0500
commit4277f2c4667187cbbdd3da3be31ee681bc6b8300 (patch)
tree8daecab60ec67cfdecf71ec7668c8e96b28b17b8 /drivers/video/sh7760fb.c
parent9056df19c2a63cec88cf580ab131214ef90d5cb1 (diff)
video: convert drivers/video/* to use module_platform_driver()
This patch converts the drivers in drivers/video/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Ben Dooks <ben@simtec.co.uk> Cc: Manuel Lauss <mano@roarinelk.homelinux.net> Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Wan ZongShun <mcuos.com@gmail.com> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Lennert Buytenhek <buytenh@wantstofly.org> Acked-by: Alexey Charkov <alchark@gmail.com> Acked-by: Damian Hobson-Garcia <dhobsong@igel.co.jp> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/sh7760fb.c')
-rw-r--r--drivers/video/sh7760fb.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/video/sh7760fb.c b/drivers/video/sh7760fb.c
index 45e47d847163..83b16e237a0e 100644
--- a/drivers/video/sh7760fb.c
+++ b/drivers/video/sh7760fb.c
@@ -585,18 +585,7 @@ static struct platform_driver sh7760_lcdc_driver = {
585 .remove = __devexit_p(sh7760fb_remove), 585 .remove = __devexit_p(sh7760fb_remove),
586}; 586};
587 587
588static int __init sh7760fb_init(void) 588module_platform_driver(sh7760_lcdc_driver);
589{
590 return platform_driver_register(&sh7760_lcdc_driver);
591}
592
593static void __exit sh7760fb_exit(void)
594{
595 platform_driver_unregister(&sh7760_lcdc_driver);
596}
597
598module_init(sh7760fb_init);
599module_exit(sh7760fb_exit);
600 589
601MODULE_AUTHOR("Nobuhiro Iwamatsu, Manuel Lauss"); 590MODULE_AUTHOR("Nobuhiro Iwamatsu, Manuel Lauss");
602MODULE_DESCRIPTION("FBdev for SH7760/63 integrated LCD Controller"); 591MODULE_DESCRIPTION("FBdev for SH7760/63 integrated LCD Controller");