diff options
Diffstat (limited to 'kernel/irq/proc.c')
| -rw-r--r-- | kernel/irq/proc.c | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index 5c320c3f10a7..8cccdf40725a 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c @@ -461,10 +461,10 @@ int show_interrupts(struct seq_file *p, void *v)  {  	static int prec; -	unsigned long flags, any_count = 0;  	int i = *(loff_t *) v, j;  	struct irqaction *action;  	struct irq_desc *desc; +	unsigned long flags;  	if (i > ACTUAL_NR_IRQS)  		return 0; @@ -488,10 +488,7 @@ int show_interrupts(struct seq_file *p, void *v)  	if (!desc || irq_settings_is_hidden(desc))  		goto outsparse; -	if (desc->kstat_irqs) -		any_count = kstat_irqs_desc(desc, cpu_online_mask); - -	if ((!desc->action || irq_desc_is_chained(desc)) && !any_count) +	if (!desc->action || irq_desc_is_chained(desc) || !desc->kstat_irqs)  		goto outsparse;  	seq_printf(p, "%*d: ", prec, i); |