clk: samsung: exynos3250: Move platform driver and of_device_id to init section
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Wed, 11 May 2016 12:01:58 +0000 (14:01 +0200)
committerSylwester Nawrocki <s.nawrocki@samsung.com>
Thu, 2 Jun 2016 09:18:00 +0000 (11:18 +0200)
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>
drivers/clk/samsung/clk-exynos3250.c

index 16575ee874cbb9e633a575001406e10621602836..e26b04fea33ba200bc087781e9118ab1682f4806 100644 (file)
@@ -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,
This page took 0.027743 seconds and 5 git commands to generate.