diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-11-10 15:20:24 +0000 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-10 14:08:46 -0800 |
commit | 6f877e79a7dbc13babd7da436cb0d25dd39f7a67 (patch) | |
tree | 9d1aedb93f86525ece84d4269f406921cb81588c /drivers/clk/tegra | |
parent | cbf2e548ca8ad4bb274d014e9a70bd841d29948e (diff) | |
download | linux-6f877e79a7dbc13babd7da436cb0d25dd39f7a67.tar.bz2 |
clk: tegra: dfll: 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>
Diffstat (limited to 'drivers/clk/tegra')
-rw-r--r-- | drivers/clk/tegra/clk-tegra124-dfll-fcpu.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/clk/tegra/clk-tegra124-dfll-fcpu.c b/drivers/clk/tegra/clk-tegra124-dfll-fcpu.c index 4301569d072a..ad1c1cc829cb 100644 --- a/drivers/clk/tegra/clk-tegra124-dfll-fcpu.c +++ b/drivers/clk/tegra/clk-tegra124-dfll-fcpu.c @@ -163,9 +163,4 @@ static struct platform_driver tegra124_dfll_fcpu_driver = { .pm = &tegra124_dfll_pm_ops, }, }; - -static int __init tegra124_dfll_fcpu_init(void) -{ - return platform_driver_register(&tegra124_dfll_fcpu_driver); -} -device_initcall(tegra124_dfll_fcpu_init); +builtin_platform_driver(tegra124_dfll_fcpu_driver); |