Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 298980
b: refs/heads/master
c: 15e06bf
h: refs/heads/master
v: v3
  • Loading branch information
Grant Likely committed Apr 11, 2012
1 parent 8223319 commit 211846b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac5830a33f5b25eae1dc0708b3e7a3d270a6c07f
refs/heads/master: 15e06bf64f686befd2030da867a3dad965b96cc0
6 changes: 3 additions & 3 deletions trunk/kernel/irq/irqdomain.c
Original file line number Diff line number Diff line change
Expand Up @@ -643,8 +643,8 @@ 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",
"chip name", "chip data", "domain name");
seq_printf(m, "%-5s %-7s %-15s %-*s %s\n", "irq", "hwirq",
"chip name", 2 * sizeof(void *) + 2, "chip data", "domain name");

for (i = 1; i < nr_irqs; i++) {
desc = irq_to_desc(i);
Expand All @@ -667,7 +667,7 @@ static int virq_debug_show(struct seq_file *m, void *private)
seq_printf(m, "%-15s ", p);

data = irq_desc_get_chip_data(desc);
seq_printf(m, "0x%16p ", data);
seq_printf(m, data ? "0x%p " : " %p ", data);

if (desc->irq_data.domain && desc->irq_data.domain->of_node)
p = desc->irq_data.domain->of_node->full_name;
Expand Down

0 comments on commit 211846b

Please sign in to comment.