diff options
Diffstat (limited to 'arch/arm/include/asm/hardirq.h')
-rw-r--r-- | arch/arm/include/asm/hardirq.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/hardirq.h b/arch/arm/include/asm/hardirq.h index c52e2507c9e0..89ad1805e579 100644 --- a/arch/arm/include/asm/hardirq.h +++ b/arch/arm/include/asm/hardirq.h | |||
@@ -22,6 +22,14 @@ typedef struct { | |||
22 | #define __inc_irq_stat(cpu, member) __IRQ_STAT(cpu, member)++ | 22 | #define __inc_irq_stat(cpu, member) __IRQ_STAT(cpu, member)++ |
23 | #define __get_irq_stat(cpu, member) __IRQ_STAT(cpu, member) | 23 | #define __get_irq_stat(cpu, member) __IRQ_STAT(cpu, member) |
24 | 24 | ||
25 | #ifdef CONFIG_SMP | ||
26 | u64 smp_irq_stat_cpu(unsigned int cpu); | ||
27 | #else | ||
28 | #define smp_irq_stat_cpu(cpu) 0 | ||
29 | #endif | ||
30 | |||
31 | #define arch_irq_stat_cpu smp_irq_stat_cpu | ||
32 | |||
25 | #if NR_IRQS > 512 | 33 | #if NR_IRQS > 512 |
26 | #define HARDIRQ_BITS 10 | 34 | #define HARDIRQ_BITS 10 |
27 | #elif NR_IRQS > 256 | 35 | #elif NR_IRQS > 256 |