Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 351a5839 authored by Andrew Morton's avatar Andrew Morton Committed by Tony Luck
Browse files

[IA64] irqs: use `name' not `typename'



`typename' is going away and is usually uninitialised anwyay.

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent cbf093e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -664,7 +664,7 @@ register_intr (unsigned int gsi, int vector, unsigned char delivery,
			printk(KERN_WARNING
			       "%s: changing vector %d from %s to %s\n",
			       __FUNCTION__, vector,
			       idesc->chip->typename, irq_type->typename);
			       idesc->chip->name, irq_type->name);
		idesc->chip = irq_type;
	}
	return 0;
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ int show_interrupts(struct seq_file *p, void *v)
			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)