]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
clocksource/drivers/exynos_mct: Remove dead code
authorMarek Szyprowski <m.szyprowski@samsung.com>
Thu, 18 Oct 2018 09:57:03 +0000 (11:57 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Sat, 23 Feb 2019 11:13:45 +0000 (12:13 +0100)
Exynos Multi-Core Timer driver is used only on device-tree based
systems, so remove non-dt related code. In case of !CONFIG_OF
the code is anyway equal because of_irq_count() has a stub
returning 0. Device node pointer is always provided when driver
has been probed from device tree.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/clocksource/exynos_mct.c

index d55c30f6981dcc377b7ad6a2bb76b2b37a182ce1..647ea9fc752f6fcfe6f571a0089b47d361069910 100644 (file)
@@ -508,13 +508,12 @@ static int __init exynos4_timer_resources(struct device_node *np, void __iomem *
        int err, cpu;
        struct clk *mct_clk, *tick_clk;
 
-       tick_clk = np ? of_clk_get_by_name(np, "fin_pll") :
-                               clk_get(NULL, "fin_pll");
+       tick_clk = of_clk_get_by_name(np, "fin_pll");
        if (IS_ERR(tick_clk))
                panic("%s: unable to determine tick clock rate\n", __func__);
        clk_rate = clk_get_rate(tick_clk);
 
-       mct_clk = np ? of_clk_get_by_name(np, "mct") : clk_get(NULL, "mct");
+       mct_clk = of_clk_get_by_name(np, "mct");
        if (IS_ERR(mct_clk))
                panic("%s: unable to retrieve mct clock instance\n", __func__);
        clk_prepare_enable(mct_clk);
@@ -582,11 +581,7 @@ static int __init mct_init_dt(struct device_node *np, unsigned int int_type)
         * timer irqs are specified after the four global timer
         * irqs are specified.
         */
-#ifdef CONFIG_OF
        nr_irqs = of_irq_count(np);
-#else
-       nr_irqs = 0;
-#endif
        for (i = MCT_L0_IRQ; i < nr_irqs; i++)
                mct_irqs[i] = irq_of_parse_and_map(np, i);