提交 85aa3915 编写于 作者: W Wei Yongjun 提交者: Linus Walleij

gpio: tb10x: use module_platform_driver to simplify the code

module_platform_driver() makes the code simpler by eliminating
boilerplate code.
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
上级 e16dbf60
......@@ -324,18 +324,7 @@ static struct platform_driver tb10x_gpio_driver = {
}
};
static int __init ab_gpio_init(void)
{
return platform_driver_register(&tb10x_gpio_driver);
}
static void __exit ab_gpio_exit(void)
{
platform_driver_unregister(&tb10x_gpio_driver);
}
module_init(ab_gpio_init);
module_exit(ab_gpio_exit);
module_platform_driver(tb10x_gpio_driver);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("tb10x gpio.");
MODULE_VERSION("0.0.1");
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册