diff options
Diffstat (limited to 'arch/m68k/platform/68328/timers.c')
| -rw-r--r-- | arch/m68k/platform/68328/timers.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/m68k/platform/68328/timers.c b/arch/m68k/platform/68328/timers.c index 309f725995b..f2678866067 100644 --- a/arch/m68k/platform/68328/timers.c +++ b/arch/m68k/platform/68328/timers.c @@ -93,7 +93,6 @@ static struct clocksource m68328_clk = {  	.name	= "timer",  	.rating	= 250,  	.read	= m68328_read_clk, -	.shift	= 20,  	.mask	= CLOCKSOURCE_MASK(32),  	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,  }; @@ -115,8 +114,7 @@ void hw_timer_init(void)  	/* Enable timer 1 */  	TCTL |= TCTL_TEN; -	m68328_clk.mult = clocksource_hz2mult(TICKS_PER_JIFFY*HZ, m68328_clk.shift); -	clocksource_register(&m68328_clk); +	clocksource_register_hz(&m68328_clk, TICKS_PER_JIFFY*HZ);  }  /***************************************************************************/  |