diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-09-16 09:03:31 -0400 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-09-16 19:05:16 -0400 |
commit | faabbe50ad518ce493adb20a9bf430daa9d395a4 (patch) | |
tree | 97f752ddf4b45d58fe71870dabec999e1b8fa2b3 | |
parent | 5254223a1216f120a84153dac1d0fde4da999a55 (diff) |
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 <weiyongjun1@huawei.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/zte/clk-zx296718.c | 6 |
1 files changed, 1 insertions, 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 = { | |||
917 | }, | 917 | }, |
918 | }; | 918 | }; |
919 | 919 | ||
920 | static int __init zx_clkc_init(void) | 920 | builtin_platform_driver(zx_clk_driver); |
921 | { | ||
922 | return platform_driver_register(&zx_clk_driver); | ||
923 | } | ||
924 | device_initcall(zx_clkc_init); | ||