Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da797478 authored by Russell King's avatar Russell King
Browse files

ARM: U300: update clock source registration



In d7e81c26 (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: default avatarLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 6b46340a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -412,9 +412,7 @@ static void __init u300_timer_init(void)
	writel(U300_TIMER_APP_EGPT2_TIMER_ENABLE,
		U300_TIMER_APP_VBASE + U300_TIMER_APP_EGPT2);

	clocksource_calc_mult_shift(&clocksource_u300_1mhz,
				    rate, APPTIMER_MIN_RANGE);
	if (clocksource_register(&clocksource_u300_1mhz))
	if (clocksource_register_hz(&clocksource_u300_1mhz, rate))
		printk(KERN_ERR "timer: failed to initialize clock "
		       "source %s\n", clocksource_u300_1mhz.name);