Commit f435da41 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Thomas Gleixner
Browse files

genirq: Fix /proc/interrupts output alignment



If the irq_desc being output does not have a domain associated the
information following the 'name' is not aligned correctly.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Link: http://lkml.kernel.org/r/20170210165416.5629-1-hsweeten@visionengravers.com


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 2b5e7730
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -487,6 +487,8 @@ int show_interrupts(struct seq_file *p, void *v)
	}
	if (desc->irq_data.domain)
		seq_printf(p, " %*d", prec, (int) desc->irq_data.hwirq);
	else
		seq_printf(p, " %*s", prec, "");
#ifdef CONFIG_GENERIC_IRQ_SHOW_LEVEL
	seq_printf(p, " %-8s", irqd_is_level_type(&desc->irq_data) ? "Level" : "Edge");
#endif