提交 6b46340a 编写于 作者: R Russell King

ARM: tcc8k: 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.
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 2c760b5b
...@@ -35,7 +35,6 @@ static struct clocksource clocksource_tcc = { ...@@ -35,7 +35,6 @@ static struct clocksource clocksource_tcc = {
.rating = 200, .rating = 200,
.read = tcc_get_cycles, .read = tcc_get_cycles,
.mask = CLOCKSOURCE_MASK(32), .mask = CLOCKSOURCE_MASK(32),
.shift = 28,
.flags = CLOCK_SOURCE_IS_CONTINUOUS, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
...@@ -103,9 +102,7 @@ static int __init tcc_clockevent_init(struct clk *clock) ...@@ -103,9 +102,7 @@ static int __init tcc_clockevent_init(struct clk *clock)
{ {
unsigned int c = clk_get_rate(clock); unsigned int c = clk_get_rate(clock);
clocksource_tcc.mult = clocksource_hz2mult(c, clocksource_register_hz(&clocksource_tcc, c);
clocksource_tcc.shift);
clocksource_register(&clocksource_tcc);
clockevent_tcc.mult = div_sc(c, NSEC_PER_SEC, clockevent_tcc.mult = div_sc(c, NSEC_PER_SEC,
clockevent_tcc.shift); clockevent_tcc.shift);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册