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

Commit 94b2c363 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Thomas Gleixner
Browse files

genirq: Fix typo CONFIG_GENIRC_IRQ_SHOW_LEVEL



commit ab7798ff ("genirq: Expand generic
show_interrupts()") added the Kconfig option GENERIC_IRQ_SHOW_LEVEL to
accomodate PowerPC, but this doesn't actually enable the functionality due
to a typo in the #ifdef check.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Cc: Linux/PPC Development <linuxppc-dev@lists.ozlabs.org>
Link: http://lkml.kernel.org/r/%3Calpine.DEB.2.00.1104302251370.19068%40ayla.of.borg%3E


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent c7bcecbe
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -419,7 +419,7 @@ int show_interrupts(struct seq_file *p, void *v)
	} else {
	} else {
		seq_printf(p, " %8s", "None");
		seq_printf(p, " %8s", "None");
	}
	}
#ifdef CONFIG_GENIRC_IRQ_SHOW_LEVEL
#ifdef CONFIG_GENERIC_IRQ_SHOW_LEVEL
	seq_printf(p, " %-8s", irqd_is_level_type(&desc->irq_data) ? "Level" : "Edge");
	seq_printf(p, " %-8s", irqd_is_level_type(&desc->irq_data) ? "Level" : "Edge");
#endif
#endif
	if (desc->name)
	if (desc->name)