| Submitter | Geert Uytterhoeven |
|---|---|
| Date | April 30, 2011, 8:56 p.m. |
| Message ID | <alpine.DEB.2.00.1104302251370.19068@ayla.of.borg> |
| Download | mbox | patch |
| Permalink | /patch/93522/ |
| State | Not Applicable |
| Headers | show |
Comments
Patch
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index dd201bd..834899f 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c @@ -419,7 +419,7 @@ int show_interrupts(struct seq_file *p, void *v) } else { 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"); #endif if (desc->name)
commit ab7798ffcf98b11a9525cf65bacdae3fd58d357f ("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: Geert Uytterhoeven <geert@linux-m68k.org> --- kernel/irq/proc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)