[MIPS] genirq: use name instead of typename
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Tue, 5 Dec 2006 16:20:57 +0000 (01:20 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 6 Dec 2006 20:16:08 +0000 (20:16 +0000)
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>
arch/mips/kernel/irq.c

index b339798..2fe4c86 100644 (file)
@@ -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)