From faabbe50ad518ce493adb20a9bf430daa9d395a4 Mon Sep 17 00:00:00 2001 From: Wei Yongjun Date: Fri, 16 Sep 2016 13:03:31 +0000 Subject: [PATCH] clk: zx296718: use builtin_platform_driver to simplify the code Use the builtin_platform_driver() macro to make the code simpler. Signed-off-by: Wei Yongjun Signed-off-by: Stephen Boyd --- drivers/clk/zte/clk-zx296718.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/clk/zte/clk-zx296718.c b/drivers/clk/zte/clk-zx296718.c index 025e324fab5c..b4fe8ddd7373 100644 --- a/drivers/clk/zte/clk-zx296718.c +++ b/drivers/clk/zte/clk-zx296718.c @@ -917,8 +917,4 @@ static struct platform_driver zx_clk_driver = { }, }; -static int __init zx_clkc_init(void) -{ - return platform_driver_register(&zx_clk_driver); -} -device_initcall(zx_clkc_init); +builtin_platform_driver(zx_clk_driver); -- 2.20.1