diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-05-11 14:01:58 +0200 |
---|---|---|
committer | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2016-06-02 11:18:00 +0200 |
commit | b3a96eed8e84780d300b79b58047ea277ba358b7 (patch) | |
tree | ad56604bb25dc05bc25b03362d05dbfe894c3c6f /drivers/clk/samsung | |
parent | clk: samsung: Constify clock init data with clock arrays (diff) | |
download | linux-b3a96eed8e84780d300b79b58047ea277ba358b7.tar.xz linux-b3a96eed8e84780d300b79b58047ea277ba358b7.zip |
clk: samsung: exynos3250: Move platform driver and of_device_id to init section
The platform_driver and of_device_id structs can be moved to init
section because they are referenced only from subsys_initcall-level
function.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Diffstat (limited to 'drivers/clk/samsung')
-rw-r--r-- | drivers/clk/samsung/clk-exynos3250.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/samsung/clk-exynos3250.c b/drivers/clk/samsung/clk-exynos3250.c index 16575ee874cb..e26b04fea33b 100644 --- a/drivers/clk/samsung/clk-exynos3250.c +++ b/drivers/clk/samsung/clk-exynos3250.c @@ -1079,12 +1079,12 @@ static int __init exynos3250_cmu_isp_probe(struct platform_device *pdev) return 0; } -static const struct of_device_id exynos3250_cmu_isp_of_match[] = { +static const struct of_device_id exynos3250_cmu_isp_of_match[] __initconst = { { .compatible = "samsung,exynos3250-cmu-isp", }, { /* sentinel */ } }; -static struct platform_driver exynos3250_cmu_isp_driver = { +static struct platform_driver exynos3250_cmu_isp_driver __initdata = { .driver = { .name = "exynos3250-cmu-isp", .of_match_table = exynos3250_cmu_isp_of_match, |