[PATCH] irq_domain: Fix debug output to use "irq" instead of "virq"

From: Grant Likely
Date: Tue Apr 10 2012 - 19:51:45 EST


Back when irq_domain was a powerpc-only thing, the term "virq", or
virtual irq, was used to differentiate irq numbers from hardware irq
numbers. However, virqs are synonymous with Linux irq numbers, so
using a different term is confusing. This patch changes the debug
output to use the header "irq" instead of "virq" for the irq number
output column.

Signed-off-by: Grant Likely <grant.likely@xxxxxxxxxxxx>
---
kernel/irq/irqdomain.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 4bf074a..b792e58 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -643,7 +643,7 @@ static int virq_debug_show(struct seq_file *m, void *private)
void *data;
int i;

- seq_printf(m, "%-5s %-7s %-15s %-18s %s\n", "virq", "hwirq",
+ seq_printf(m, "%-5s %-7s %-15s %-18s %s\n", "irq", "hwirq",
"chip name", "chip data", "domain name");

for (i = 1; i < nr_irqs; i++) {
--
1.7.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/