diff options
Diffstat (limited to 'arch/sparc/kernel/time_64.c')
-rw-r--r-- | arch/sparc/kernel/time_64.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/sparc/kernel/time_64.c b/arch/sparc/kernel/time_64.c index 2db3c2229b95..4ee2e48c4b39 100644 --- a/arch/sparc/kernel/time_64.c +++ b/arch/sparc/kernel/time_64.c | |||
@@ -36,10 +36,10 @@ | |||
36 | #include <linux/clocksource.h> | 36 | #include <linux/clocksource.h> |
37 | #include <linux/of_device.h> | 37 | #include <linux/of_device.h> |
38 | #include <linux/platform_device.h> | 38 | #include <linux/platform_device.h> |
39 | #include <linux/irq.h> | ||
39 | 40 | ||
40 | #include <asm/oplib.h> | 41 | #include <asm/oplib.h> |
41 | #include <asm/timer.h> | 42 | #include <asm/timer.h> |
42 | #include <asm/irq.h> | ||
43 | #include <asm/io.h> | 43 | #include <asm/io.h> |
44 | #include <asm/prom.h> | 44 | #include <asm/prom.h> |
45 | #include <asm/starfire.h> | 45 | #include <asm/starfire.h> |
@@ -724,12 +724,14 @@ void timer_interrupt(int irq, struct pt_regs *regs) | |||
724 | unsigned long tick_mask = tick_ops->softint_mask; | 724 | unsigned long tick_mask = tick_ops->softint_mask; |
725 | int cpu = smp_processor_id(); | 725 | int cpu = smp_processor_id(); |
726 | struct clock_event_device *evt = &per_cpu(sparc64_events, cpu); | 726 | struct clock_event_device *evt = &per_cpu(sparc64_events, cpu); |
727 | struct irq_desc *desc; | ||
727 | 728 | ||
728 | clear_softint(tick_mask); | 729 | clear_softint(tick_mask); |
729 | 730 | ||
730 | irq_enter(); | 731 | irq_enter(); |
731 | 732 | ||
732 | kstat_this_cpu.irqs[0]++; | 733 | desc = irq_to_desc(0); |
734 | kstat_incr_irqs_this_cpu(0, desc); | ||
733 | 735 | ||
734 | if (unlikely(!evt->event_handler)) { | 736 | if (unlikely(!evt->event_handler)) { |
735 | printk(KERN_WARNING | 737 | printk(KERN_WARNING |