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

Commit 8ab1221c authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Matt Turner
Browse files

alpha: Fixup last users of irq_chip->typename



The typename member of struct irq_chip was kept for migration purposes
and is obsolete since more than 2 years. Fix up the leftovers.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Richard Henderson <rth@twiddle.net>
Cc: linux-alpha@vger.kernel.org
Signed-off-by: default avatarMatt Turner <mattst88@gmail.com>
parent 745dd240
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ show_interrupts(struct seq_file *p, void *v)
		for_each_online_cpu(j)
			seq_printf(p, "%10u ", kstat_irqs_cpu(irq, j));
#endif
		seq_printf(p, " %14s", irq_desc[irq].chip->typename);
		seq_printf(p, " %14s", irq_desc[irq].chip->name);
		seq_printf(p, "  %c%s",
			(action->flags & IRQF_DISABLED)?'+':' ',
			action->name);
+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ struct irqaction timer_irqaction = {
};

static struct irq_chip rtc_irq_type = {
	.typename	= "RTC",
	.name		= "RTC",
	.startup	= rtc_startup,
	.shutdown	= rtc_enable_disable,
	.enable		= rtc_enable_disable,
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ i8259a_end_irq(unsigned int irq)
}

struct irq_chip i8259a_irq_type = {
	.typename	= "XT-PIC",
	.name		= "XT-PIC",
	.startup	= i8259a_startup_irq,
	.shutdown	= i8259a_disable_irq,
	.enable		= i8259a_enable_irq,
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ pyxis_mask_and_ack_irq(unsigned int irq)
}

static struct irq_chip pyxis_irq_type = {
	.typename	= "PYXIS",
	.name		= "PYXIS",
	.startup	= pyxis_startup_irq,
	.shutdown	= pyxis_disable_irq,
	.enable		= pyxis_enable_irq,
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ srm_end_irq(unsigned int irq)

/* Handle interrupts from the SRM, assuming no additional weirdness.  */
static struct irq_chip srm_irq_type = {
	.typename	= "SRM",
	.name		= "SRM",
	.startup	= srm_startup_irq,
	.shutdown	= srm_disable_irq,
	.enable		= srm_enable_irq,
Loading