diff options
Diffstat (limited to 'kernel/irq/debugfs.c')
-rw-r--r-- | kernel/irq/debugfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/irq/debugfs.c b/kernel/irq/debugfs.c index b7d1023b9b22..7f608ac39653 100644 --- a/kernel/irq/debugfs.c +++ b/kernel/irq/debugfs.c | |||
@@ -81,6 +81,8 @@ irq_debug_show_data(struct seq_file *m, struct irq_data *data, int ind) | |||
81 | data->domain ? data->domain->name : ""); | 81 | data->domain ? data->domain->name : ""); |
82 | seq_printf(m, "%*shwirq: 0x%lx\n", ind + 1, "", data->hwirq); | 82 | seq_printf(m, "%*shwirq: 0x%lx\n", ind + 1, "", data->hwirq); |
83 | irq_debug_show_chip(m, data, ind + 1); | 83 | irq_debug_show_chip(m, data, ind + 1); |
84 | if (data->domain && data->domain->ops && data->domain->ops->debug_show) | ||
85 | data->domain->ops->debug_show(m, NULL, data, ind + 1); | ||
84 | #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY | 86 | #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY |
85 | if (!data->parent_data) | 87 | if (!data->parent_data) |
86 | return; | 88 | return; |