diff options
Diffstat (limited to 'arch/arm/plat-orion/time.c')
-rw-r--r-- | arch/arm/plat-orion/time.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/plat-orion/time.c b/arch/arm/plat-orion/time.c index 715a30177f28..11e2583e85e4 100644 --- a/arch/arm/plat-orion/time.c +++ b/arch/arm/plat-orion/time.c | |||
@@ -102,7 +102,6 @@ static cycle_t orion_clksrc_read(struct clocksource *cs) | |||
102 | 102 | ||
103 | static struct clocksource orion_clksrc = { | 103 | static struct clocksource orion_clksrc = { |
104 | .name = "orion_clocksource", | 104 | .name = "orion_clocksource", |
105 | .shift = 20, | ||
106 | .rating = 300, | 105 | .rating = 300, |
107 | .read = orion_clksrc_read, | 106 | .read = orion_clksrc_read, |
108 | .mask = CLOCKSOURCE_MASK(32), | 107 | .mask = CLOCKSOURCE_MASK(32), |
@@ -245,8 +244,7 @@ void __init orion_time_init(unsigned int irq, unsigned int tclk) | |||
245 | writel(u & ~BRIDGE_INT_TIMER0, BRIDGE_MASK); | 244 | writel(u & ~BRIDGE_INT_TIMER0, BRIDGE_MASK); |
246 | u = readl(TIMER_CTRL); | 245 | u = readl(TIMER_CTRL); |
247 | writel(u | TIMER0_EN | TIMER0_RELOAD_EN, TIMER_CTRL); | 246 | writel(u | TIMER0_EN | TIMER0_RELOAD_EN, TIMER_CTRL); |
248 | orion_clksrc.mult = clocksource_hz2mult(tclk, orion_clksrc.shift); | 247 | clocksource_register_hz(&orion_clksrc, tclk); |
249 | clocksource_register(&orion_clksrc); | ||
250 | 248 | ||
251 | /* | 249 | /* |
252 | * Setup clockevent timer (interrupt-driven.) | 250 | * Setup clockevent timer (interrupt-driven.) |