mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
ARM: integrator: update clock source registration
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.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
7c044be50d
commit
08963dab7c
@ -372,7 +372,6 @@ static struct clocksource clocksource_timersp = {
|
|||||||
.rating = 200,
|
.rating = 200,
|
||||||
.read = timersp_read,
|
.read = timersp_read,
|
||||||
.mask = CLOCKSOURCE_MASK(16),
|
.mask = CLOCKSOURCE_MASK(16),
|
||||||
.shift = 16,
|
|
||||||
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -390,8 +389,7 @@ static void integrator_clocksource_init(u32 khz)
|
|||||||
writel(ctrl, base + TIMER_CTRL);
|
writel(ctrl, base + TIMER_CTRL);
|
||||||
writel(0xffff, base + TIMER_LOAD);
|
writel(0xffff, base + TIMER_LOAD);
|
||||||
|
|
||||||
cs->mult = clocksource_khz2mult(khz, cs->shift);
|
clocksource_register_khz(cs, khz);
|
||||||
clocksource_register(cs);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __iomem * const clkevt_base = (void __iomem *)TIMER1_VA_BASE;
|
static void __iomem * const clkevt_base = (void __iomem *)TIMER1_VA_BASE;
|
||||||
|
Loading…
Reference in New Issue
Block a user