]> Pileus Git - ~andy/linux/commitdiff
ARM: ux500: Remove checking for DT during timer init
authorLee Jones <lee.jones@linaro.org>
Wed, 6 Nov 2013 10:05:48 +0000 (10:05 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 26 Nov 2013 20:01:58 +0000 (21:01 +0100)
Decomission the non-DT boot path as we are now DT only

Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
arch/arm/mach-ux500/timer.c

index 05a4ff78b3bd9e73deaf4c0e814f79cdae8e971e..ca60bbd9361bd2f6ccd22210af0aaa17ccccbfb3 100644 (file)
@@ -27,18 +27,11 @@ static DEFINE_TWD_LOCAL_TIMER(u8500_twd_local_timer,
 static void __init ux500_twd_init(void)
 {
        struct twd_local_timer *twd_local_timer;
-       int err;
 
        /* Use this to switch local timer base if changed in new ASICs */
        twd_local_timer = &u8500_twd_local_timer;
 
-       if (of_have_populated_dt())
-               clocksource_of_init();
-       else {
-               err = twd_local_timer_register(twd_local_timer);
-               if (err)
-                       pr_err("twd_local_timer_register failed %d\n", err);
-       }
+       clocksource_of_init();
 }
 #else
 #define ux500_twd_init()       do { } while(0)
@@ -63,20 +56,15 @@ void __init ux500_timer_init(void)
                ux500_unknown_soc();
        }
 
-       /* TODO: Once MTU has been DT:ed place code above into else. */
-       if (of_have_populated_dt()) {
-#ifdef CONFIG_OF
-               np = of_find_matching_node(NULL, prcmu_timer_of_match);
-               if (!np)
-#endif
-                       goto dt_fail;
+       np = of_find_matching_node(NULL, prcmu_timer_of_match);
+       if (!np)
+               goto dt_fail;
 
-               tmp_base = of_iomap(np, 0);
-               if (!tmp_base)
-                       goto dt_fail;
+       tmp_base = of_iomap(np, 0);
+       if (!tmp_base)
+               goto dt_fail;
 
-               prcmu_timer_base = tmp_base;
-       }
+       prcmu_timer_base = tmp_base;
 
 dt_fail:
        /* Doing it the old fashioned way. */