diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-12-05 16:20:57 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-12-06 20:16:08 (GMT) |
commit | 1ccd1c1c35a6cb21da32479931d4fa6d47320095 (patch) | |
tree | 63315c187ba40f763192c85994d717a85ad31e36 /arch/mips/kernel | |
parent | 25ba2f506c69bd54a7342210422176baf10018c5 (diff) | |
download | linux-1ccd1c1c35a6cb21da32479931d4fa6d47320095.tar.xz |
[MIPS] genirq: use name instead of typename
The "typename" field was obsoleted by the "name" field.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c index b339798..2fe4c86 100644 --- a/arch/mips/kernel/irq.c +++ b/arch/mips/kernel/irq.c @@ -117,7 +117,7 @@ int show_interrupts(struct seq_file *p, void *v) for_each_online_cpu(j) seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]); #endif - seq_printf(p, " %14s", irq_desc[i].chip->typename); + seq_printf(p, " %14s", irq_desc[i].chip->name); seq_printf(p, " %s", action->name); for (action=action->next; action; action = action->next) |