diff options
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/time.c b/arch/sh/kernel/time.c index df7a9b9d4cbf..d5f5aedde0a3 100644 --- a/arch/sh/kernel/time.c +++ b/arch/sh/kernel/time.c | |||
@@ -234,7 +234,7 @@ static long last_rtc_update; | |||
234 | * timer_interrupt() needs to keep up the real-time clock, | 234 | * timer_interrupt() needs to keep up the real-time clock, |
235 | * as well as call the "do_timer()" routine every clocktick | 235 | * as well as call the "do_timer()" routine every clocktick |
236 | */ | 236 | */ |
237 | static inline void do_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 237 | static inline void do_timer_interrupt(int irq, struct pt_regs *regs) |
238 | { | 238 | { |
239 | do_timer(regs); | 239 | do_timer(regs); |
240 | #ifndef CONFIG_SMP | 240 | #ifndef CONFIG_SMP |
@@ -285,7 +285,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
285 | * locally disabled. -arca | 285 | * locally disabled. -arca |
286 | */ | 286 | */ |
287 | write_seqlock(&xtime_lock); | 287 | write_seqlock(&xtime_lock); |
288 | do_timer_interrupt(irq, NULL, regs); | 288 | do_timer_interrupt(irq, regs); |
289 | write_sequnlock(&xtime_lock); | 289 | write_sequnlock(&xtime_lock); |
290 | 290 | ||
291 | return IRQ_HANDLED; | 291 | return IRQ_HANDLED; |