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>
This commit is contained in:
parent
9056df19c2
commit
4277f2c466
|
@ -902,18 +902,7 @@ static struct platform_driver mxsfb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init mxsfb_init(void)
|
||||
{
|
||||
return platform_driver_register(&mxsfb_driver);
|
||||
}
|
||||
|
||||
static void __exit mxsfb_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mxsfb_driver);
|
||||
}
|
||||
|
||||
module_init(mxsfb_init);
|
||||
module_exit(mxsfb_exit);
|
||||
module_platform_driver(mxsfb_devtype);
|
||||
|
||||
MODULE_DESCRIPTION("Freescale mxs framebuffer driver");
|
||||
MODULE_AUTHOR("Sascha Hauer, Pengutronix");
|
||||
|
|
|
@ -762,18 +762,7 @@ static struct platform_driver nuc900fb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
int __devinit nuc900fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&nuc900fb_driver);
|
||||
}
|
||||
|
||||
static void __exit nuc900fb_cleanup(void)
|
||||
{
|
||||
platform_driver_unregister(&nuc900fb_driver);
|
||||
}
|
||||
|
||||
module_init(nuc900fb_init);
|
||||
module_exit(nuc900fb_cleanup);
|
||||
module_platform_driver(nuc900fb_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Framebuffer driver for the NUC900");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -832,17 +832,7 @@ static struct platform_driver pxa168fb_driver = {
|
|||
.remove = __devexit_p(pxa168fb_remove),
|
||||
};
|
||||
|
||||
static int __init pxa168fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&pxa168fb_driver);
|
||||
}
|
||||
module_init(pxa168fb_init);
|
||||
|
||||
static void __exit pxa168fb_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&pxa168fb_driver);
|
||||
}
|
||||
module_exit(pxa168fb_exit);
|
||||
module_platform_driver(pxa168fb_driver);
|
||||
|
||||
MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com> "
|
||||
"Green Wan <gwan@marvell.com>");
|
||||
|
|
|
@ -747,20 +747,7 @@ static struct platform_driver pxa3xx_gcu_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init
|
||||
pxa3xx_gcu_init(void)
|
||||
{
|
||||
return platform_driver_register(&pxa3xx_gcu_driver);
|
||||
}
|
||||
|
||||
static void __exit
|
||||
pxa3xx_gcu_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&pxa3xx_gcu_driver);
|
||||
}
|
||||
|
||||
module_init(pxa3xx_gcu_init);
|
||||
module_exit(pxa3xx_gcu_exit);
|
||||
module_platform_driver(pxa3xx_gcu_driver);
|
||||
|
||||
MODULE_DESCRIPTION("PXA3xx graphics controller unit driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -2003,18 +2003,7 @@ static struct platform_driver s3c_fb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init s3c_fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&s3c_fb_driver);
|
||||
}
|
||||
|
||||
static void __exit s3c_fb_cleanup(void)
|
||||
{
|
||||
platform_driver_unregister(&s3c_fb_driver);
|
||||
}
|
||||
|
||||
module_init(s3c_fb_init);
|
||||
module_exit(s3c_fb_cleanup);
|
||||
module_platform_driver(s3c_fb_driver);
|
||||
|
||||
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
||||
MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
|
||||
|
|
|
@ -585,18 +585,7 @@ static struct platform_driver sh7760_lcdc_driver = {
|
|||
.remove = __devexit_p(sh7760fb_remove),
|
||||
};
|
||||
|
||||
static int __init sh7760fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&sh7760_lcdc_driver);
|
||||
}
|
||||
|
||||
static void __exit sh7760fb_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&sh7760_lcdc_driver);
|
||||
}
|
||||
|
||||
module_init(sh7760fb_init);
|
||||
module_exit(sh7760fb_exit);
|
||||
module_platform_driver(sh7760_lcdc_driver);
|
||||
|
||||
MODULE_AUTHOR("Nobuhiro Iwamatsu, Manuel Lauss");
|
||||
MODULE_DESCRIPTION("FBdev for SH7760/63 integrated LCD Controller");
|
||||
|
|
|
@ -1709,18 +1709,7 @@ static struct platform_driver sh_mobile_lcdc_driver = {
|
|||
.remove = sh_mobile_lcdc_remove,
|
||||
};
|
||||
|
||||
static int __init sh_mobile_lcdc_init(void)
|
||||
{
|
||||
return platform_driver_register(&sh_mobile_lcdc_driver);
|
||||
}
|
||||
|
||||
static void __exit sh_mobile_lcdc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&sh_mobile_lcdc_driver);
|
||||
}
|
||||
|
||||
module_init(sh_mobile_lcdc_init);
|
||||
module_exit(sh_mobile_lcdc_exit);
|
||||
module_platform_driver(sh_mobile_lcdc_driver);
|
||||
|
||||
MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
|
||||
MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
|
||||
|
|
|
@ -679,18 +679,7 @@ static struct platform_driver sh_mobile_meram_driver = {
|
|||
.remove = sh_mobile_meram_remove,
|
||||
};
|
||||
|
||||
static int __init sh_mobile_meram_init(void)
|
||||
{
|
||||
return platform_driver_register(&sh_mobile_meram_driver);
|
||||
}
|
||||
|
||||
static void __exit sh_mobile_meram_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&sh_mobile_meram_driver);
|
||||
}
|
||||
|
||||
module_init(sh_mobile_meram_init);
|
||||
module_exit(sh_mobile_meram_exit);
|
||||
module_platform_driver(sh_mobile_meram_driver);
|
||||
|
||||
MODULE_DESCRIPTION("SuperH Mobile MERAM driver");
|
||||
MODULE_AUTHOR("Damian Hobson-Garcia / Takanari Hayama");
|
||||
|
|
|
@ -2230,18 +2230,7 @@ static struct platform_driver sm501fb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __devinit sm501fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&sm501fb_driver);
|
||||
}
|
||||
|
||||
static void __exit sm501fb_cleanup(void)
|
||||
{
|
||||
platform_driver_unregister(&sm501fb_driver);
|
||||
}
|
||||
|
||||
module_init(sm501fb_init);
|
||||
module_exit(sm501fb_cleanup);
|
||||
module_platform_driver(sm501fb_driver);
|
||||
|
||||
module_param_named(mode, fb_mode, charp, 0);
|
||||
MODULE_PARM_DESC(mode,
|
||||
|
|
|
@ -457,18 +457,7 @@ static struct platform_driver vt8500lcd_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init vt8500lcd_init(void)
|
||||
{
|
||||
return platform_driver_register(&vt8500lcd_driver);
|
||||
}
|
||||
|
||||
static void __exit vt8500lcd_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&vt8500lcd_driver);
|
||||
}
|
||||
|
||||
module_init(vt8500lcd_init);
|
||||
module_exit(vt8500lcd_exit);
|
||||
module_platform_driver(vt8500lcd_driver);
|
||||
|
||||
MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com>");
|
||||
MODULE_DESCRIPTION("LCD controller driver for VIA VT8500");
|
||||
|
|
|
@ -1620,18 +1620,7 @@ static struct platform_driver w100fb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
int __init w100fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&w100fb_driver);
|
||||
}
|
||||
|
||||
void __exit w100fb_cleanup(void)
|
||||
{
|
||||
platform_driver_unregister(&w100fb_driver);
|
||||
}
|
||||
|
||||
module_init(w100fb_init);
|
||||
module_exit(w100fb_cleanup);
|
||||
module_platform_driver(w100fb_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ATI Imageon w100 framebuffer driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -404,18 +404,7 @@ static struct platform_driver wm8505fb_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init wm8505fb_init(void)
|
||||
{
|
||||
return platform_driver_register(&wm8505fb_driver);
|
||||
}
|
||||
|
||||
static void __exit wm8505fb_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&wm8505fb_driver);
|
||||
}
|
||||
|
||||
module_init(wm8505fb_init);
|
||||
module_exit(wm8505fb_exit);
|
||||
module_platform_driver(wm8505fb_driver);
|
||||
|
||||
MODULE_AUTHOR("Ed Spiridonov <edo.rus@gmail.com>");
|
||||
MODULE_DESCRIPTION("Framebuffer driver for WMT WM8505");
|
||||
|
|
|
@ -167,18 +167,7 @@ static struct platform_driver wmt_ge_rops_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init wmt_ge_rops_init(void)
|
||||
{
|
||||
return platform_driver_register(&wmt_ge_rops_driver);
|
||||
}
|
||||
|
||||
static void __exit wmt_ge_rops_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&wmt_ge_rops_driver);
|
||||
}
|
||||
|
||||
module_init(wmt_ge_rops_init);
|
||||
module_exit(wmt_ge_rops_exit);
|
||||
module_platform_driver(wmt_ge_rops_driver);
|
||||
|
||||
MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com");
|
||||
MODULE_DESCRIPTION("Accelerators for raster operations using "
|
||||
|
|
|
@ -511,25 +511,7 @@ static struct platform_driver xilinxfb_of_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------------
|
||||
* Module setup and teardown
|
||||
*/
|
||||
|
||||
static int __init
|
||||
xilinxfb_init(void)
|
||||
{
|
||||
return platform_driver_register(&xilinxfb_of_driver);
|
||||
}
|
||||
|
||||
static void __exit
|
||||
xilinxfb_cleanup(void)
|
||||
{
|
||||
platform_driver_unregister(&xilinxfb_of_driver);
|
||||
}
|
||||
|
||||
module_init(xilinxfb_init);
|
||||
module_exit(xilinxfb_cleanup);
|
||||
module_platform_driver(xilinxfb_of_driver);
|
||||
|
||||
MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
|
||||
MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
|
||||
|
|
Loading…
Reference in New Issue