From: Wei Yongjun Date: Tue, 19 Jul 2016 11:25:16 +0000 (+0000) Subject: wan/fsl_ucc_hdlc: use module_platform_driver to simplify the code X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=459421cc81eb4cdca96ef2c2b532359c6daa9002;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/fsl_ucc_hdlc.c b/drivers/net/wan/fsl_ucc_hdlc.c index 10ca49797e34..2fc50ec453d0 100644 --- a/drivers/net/wan/fsl_ucc_hdlc.c +++ b/drivers/net/wan/fsl_ucc_hdlc.c @@ -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);