diff options
Diffstat (limited to 'arch/arm/mach-lpc32xx')
-rw-r--r-- | arch/arm/mach-lpc32xx/timer.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/mach-lpc32xx/timer.c b/arch/arm/mach-lpc32xx/timer.c index 630dd4a74b26..6162ac308c20 100644 --- a/arch/arm/mach-lpc32xx/timer.c +++ b/arch/arm/mach-lpc32xx/timer.c | |||
@@ -38,7 +38,6 @@ static cycle_t lpc32xx_clksrc_read(struct clocksource *cs) | |||
38 | 38 | ||
39 | static struct clocksource lpc32xx_clksrc = { | 39 | static struct clocksource lpc32xx_clksrc = { |
40 | .name = "lpc32xx_clksrc", | 40 | .name = "lpc32xx_clksrc", |
41 | .shift = 24, | ||
42 | .rating = 300, | 41 | .rating = 300, |
43 | .read = lpc32xx_clksrc_read, | 42 | .read = lpc32xx_clksrc_read, |
44 | .mask = CLOCKSOURCE_MASK(32), | 43 | .mask = CLOCKSOURCE_MASK(32), |
@@ -171,9 +170,7 @@ static void __init lpc32xx_timer_init(void) | |||
171 | __raw_writel(0, LCP32XX_TIMER_MCR(LPC32XX_TIMER1_BASE)); | 170 | __raw_writel(0, LCP32XX_TIMER_MCR(LPC32XX_TIMER1_BASE)); |
172 | __raw_writel(LCP32XX_TIMER_CNTR_TCR_EN, | 171 | __raw_writel(LCP32XX_TIMER_CNTR_TCR_EN, |
173 | LCP32XX_TIMER_TCR(LPC32XX_TIMER1_BASE)); | 172 | LCP32XX_TIMER_TCR(LPC32XX_TIMER1_BASE)); |
174 | lpc32xx_clksrc.mult = clocksource_hz2mult(clkrate, | 173 | clocksource_register_hz(&lpc32xx_clksrc, clkrate); |
175 | lpc32xx_clksrc.shift); | ||
176 | clocksource_register(&lpc32xx_clksrc); | ||
177 | } | 174 | } |
178 | 175 | ||
179 | struct sys_timer lpc32xx_timer = { | 176 | struct sys_timer lpc32xx_timer = { |