mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-20 03:24:03 +08:00
avr32: Convert to clocksource_register_hz
This converts the avr32 clocksource to use clocksource_register_hz. This is untested, so any assistance in testing would be appreciated! CC: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> CC: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <johnstul@us.ibm.com>
This commit is contained in:
parent
992a88b62c
commit
1e2de47cdd
@ -35,7 +35,6 @@ static struct clocksource counter = {
|
||||
.rating = 50,
|
||||
.read = read_cycle_count,
|
||||
.mask = CLOCKSOURCE_MASK(32),
|
||||
.shift = 16,
|
||||
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
||||
};
|
||||
|
||||
@ -123,9 +122,7 @@ void __init time_init(void)
|
||||
|
||||
/* figure rate for counter */
|
||||
counter_hz = clk_get_rate(boot_cpu_data.clk);
|
||||
counter.mult = clocksource_hz2mult(counter_hz, counter.shift);
|
||||
|
||||
ret = clocksource_register(&counter);
|
||||
ret = clocksource_register_hz(&counter, counter_hz);
|
||||
if (ret)
|
||||
pr_debug("timer: could not register clocksource: %d\n", ret);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user