[HACK] remove clock setting code
authorJaehyoung Choi <jkkkkk.choi@samsung.com>
Thu, 3 May 2018 12:06:39 +0000 (21:06 +0900)
committerJaehyoung Choi <jkkkkk.choi@samsung.com>
Thu, 3 May 2018 12:06:39 +0000 (21:06 +0900)
Change-Id: Ib34be34cd4a23277a8cb29dcf9592ec6abfded27
Signed-off-by: Jaehyoung Choi <jkkkkk.choi@samsung.com>
drivers/clk/samsung/clk-exynos9610.c
drivers/clocksource/exynos_mct.c

index 05b45d1f7ce97fd0dfb43bca057ce9631fadaf76..ecd665679d1cb6fc05932e85303daa0bbe76579c 100644 (file)
@@ -302,10 +302,12 @@ static struct init_vclk exynos9610_clkout_vclks[] __initdata = {
        VCLK(OSC_AUD, VCLK_CLKOUT0, "OSC_AUD", 0, 0, NULL),
 };
 
+#if 0
 static __initdata struct of_device_id ext_clk_match[] = {
        {.compatible = "samsung,exynos9610-oscclk", .data = (void *)0},
        {},
 };
+#endif
 
 void exynos9610_vclk_init(void)
 {
@@ -315,6 +317,7 @@ void exynos9610_vclk_init(void)
 /* register exynos9610 clocks */
 void __init exynos9610_clk_init(struct device_node *np)
 {
+#if 0
        void __iomem *reg_base;
        int ret;
 
@@ -369,7 +372,7 @@ void __init exynos9610_clk_init(struct device_node *np)
        samsung_clk_of_add_provider(np, exynos9610_clk_provider);
 
        late_time_init = exynos9610_vclk_init;
-
+#endif
        pr_info("EXYNOS9610: Clock setup completed\n");
 }
 
index 27b41aae04fa316b76bee84a9a7e66b3e40cc834..972607972030f8676a2927da5911d5494e4cde32 100644 (file)
@@ -494,6 +494,7 @@ static int exynos4_mct_dying_cpu(unsigned int cpu)
 static int __init exynos4_timer_resources(struct device_node *np, void __iomem *base)
 {
        int err, cpu;
+#if 0
        struct clk *mct_clk, *tick_clk;
 
        tick_clk = np ? of_clk_get_by_name(np, "fin_pll") :
@@ -506,7 +507,8 @@ static int __init exynos4_timer_resources(struct device_node *np, void __iomem *
        if (IS_ERR(mct_clk))
                panic("%s: unable to retrieve mct clock instance\n", __func__);
        clk_prepare_enable(mct_clk);
-
+#endif
+       clk_rate = 26000000;
        reg_base = base;
        if (!reg_base)
                panic("%s: unable to ioremap mct address space\n", __func__);