diff options
Diffstat (limited to 'include/linux/kernel_stat.h')
| -rw-r--r-- | include/linux/kernel_stat.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h index 8b9b8908553..ad54c846911 100644 --- a/include/linux/kernel_stat.h +++ b/include/linux/kernel_stat.h @@ -86,6 +86,7 @@ static inline unsigned int kstat_softirqs_cpu(unsigned int irq, int cpu)  /*   * Number of interrupts per specific IRQ source, since bootup   */ +#ifndef CONFIG_GENERIC_HARDIRQS  static inline unsigned int kstat_irqs(unsigned int irq)  {  	unsigned int sum = 0; @@ -96,6 +97,9 @@ static inline unsigned int kstat_irqs(unsigned int irq)  	return sum;  } +#else +extern unsigned int kstat_irqs(unsigned int irq); +#endif  /*   * Number of interrupts per cpu, since bootup  |