diff options
Diffstat (limited to 'arch/x86_64/kernel/irq.c')
-rw-r--r-- | arch/x86_64/kernel/irq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/irq.c b/arch/x86_64/kernel/irq.c index b3677e6ccc6e..609f97153b88 100644 --- a/arch/x86_64/kernel/irq.c +++ b/arch/x86_64/kernel/irq.c | |||
@@ -74,7 +74,8 @@ int show_interrupts(struct seq_file *p, void *v) | |||
74 | for_each_online_cpu(j) | 74 | for_each_online_cpu(j) |
75 | seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]); | 75 | seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]); |
76 | #endif | 76 | #endif |
77 | seq_printf(p, " %14s", irq_desc[i].chip->typename); | 77 | seq_printf(p, " %8s", irq_desc[i].chip->name); |
78 | seq_printf(p, "-%s", handle_irq_name(irq_desc[i].handle_irq)); | ||
78 | 79 | ||
79 | seq_printf(p, " %s", action->name); | 80 | seq_printf(p, " %s", action->name); |
80 | for (action=action->next; action; action = action->next) | 81 | for (action=action->next; action; action = action->next) |
@@ -117,7 +118,7 @@ asmlinkage unsigned int do_IRQ(struct pt_regs *regs) | |||
117 | #ifdef CONFIG_DEBUG_STACKOVERFLOW | 118 | #ifdef CONFIG_DEBUG_STACKOVERFLOW |
118 | stack_overflow_check(regs); | 119 | stack_overflow_check(regs); |
119 | #endif | 120 | #endif |
120 | __do_IRQ(irq, regs); | 121 | generic_handle_irq(irq, regs); |
121 | irq_exit(); | 122 | irq_exit(); |
122 | 123 | ||
123 | return 1; | 124 | return 1; |