ARM: davinci: update clock source registration
authorRussell King <rmk+kernel@arm.linux.org.uk>
Mon, 13 Dec 2010 13:17:12 +0000 (13:17 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 22 Dec 2010 22:44:30 +0000 (22:44 +0000)
In d7e81c2 (clocksource: Add clocksource_register_hz/khz interface) new
interfaces were added which simplify (and optimize) the selection of the
divisor shift/mult constants.  Switch over to using this new interface.

Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Tested-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/mach-davinci/time.c

index 0f21c36..c148671 100644 (file)
@@ -276,7 +276,6 @@ static struct clocksource clocksource_davinci = {
        .rating         = 300,
        .read           = read_cycles,
        .mask           = CLOCKSOURCE_MASK(32),
-       .shift          = 24,
        .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
 };
 
@@ -378,10 +377,8 @@ static void __init davinci_timer_init(void)
 
        /* setup clocksource */
        clocksource_davinci.name = id_to_name[clocksource_id];
-       clocksource_davinci.mult =
-               clocksource_khz2mult(davinci_clock_tick_rate/1000,
-                                    clocksource_davinci.shift);
-       if (clocksource_register(&clocksource_davinci))
+       if (clocksource_register_hz(&clocksource_davinci,
+                                   davinci_clock_tick_rate))
                printk(err, clocksource_davinci.name);
 
        /* setup clockevent */