Video / au1100fb: Use module_platform_driver() to simplify code
Convert to module_platform_driver() to simplify code. Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
d07b319143
commit
55be310892
|
@ -660,19 +660,7 @@ static struct platform_driver au1100fb_driver = {
|
|||
.suspend = au1100fb_drv_suspend,
|
||||
.resume = au1100fb_drv_resume,
|
||||
};
|
||||
|
||||
static int __init au1100fb_load(void)
|
||||
{
|
||||
return platform_driver_register(&au1100fb_driver);
|
||||
}
|
||||
|
||||
static void __exit au1100fb_unload(void)
|
||||
{
|
||||
platform_driver_unregister(&au1100fb_driver);
|
||||
}
|
||||
|
||||
module_init(au1100fb_load);
|
||||
module_exit(au1100fb_unload);
|
||||
module_platform_driver(au1100fb_driver);
|
||||
|
||||
MODULE_DESCRIPTION(DRIVER_DESC);
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
Loading…
Reference in New Issue