提交 350d72f0 编写于 作者: S Sachin Kamat 提交者: Tomi Valkeinen

video: grvga: Use module_platform_driver

module_platform_driver removes some boilerplate code and makes
it simple.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Cc: Kristoffer Glembo <kristoffer@gaisler.com>
Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
上级 93f57172
......@@ -557,19 +557,7 @@ static struct platform_driver grvga_driver = {
.remove = grvga_remove,
};
static int __init grvga_init(void)
{
return platform_driver_register(&grvga_driver);
}
static void __exit grvga_exit(void)
{
platform_driver_unregister(&grvga_driver);
}
module_init(grvga_init);
module_exit(grvga_exit);
module_platform_driver(grvga_driver);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Aeroflex Gaisler");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册