wan/fsl_ucc_hdlc: use module_platform_driver to simplify the code

module_platform_driver() makes the code simpler by eliminating
boilerplate code.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Wei Yongjun 2016-07-19 11:25:16 +00:00 коммит произвёл David S. Miller
Родитель 9d5658e65c
Коммит 459421cc81
1 изменённых файлов: 1 добавлений и 12 удалений

Просмотреть файл

@ -1174,15 +1174,4 @@ static struct platform_driver ucc_hdlc_driver = {
},
};
static int __init ucc_hdlc_init(void)
{
return platform_driver_register(&ucc_hdlc_driver);
}
static void __exit ucc_hdlc_exit(void)
{
platform_driver_unregister(&ucc_hdlc_driver);
}
module_init(ucc_hdlc_init);
module_exit(ucc_hdlc_exit);
module_platform_driver(ucc_hdlc_driver);