From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wilson.telenet-ops.be (wilson.telenet-ops.be [195.130.132.42]) by ozlabs.org (Postfix) with ESMTP id D5A4FB6F4E for ; Sun, 1 May 2011 07:08:30 +1000 (EST) Received: from georges.telenet-ops.be (unknown [195.130.137.68]) by wilson.telenet-ops.be (Postfix) with ESMTP id 4AC57717D9 for ; Sat, 30 Apr 2011 22:56:23 +0200 (CEST) Date: Sat, 30 Apr 2011 22:56:20 +0200 (CEST) From: Geert Uytterhoeven Sender: geert@linux-m68k.org To: Thomas Gleixner Subject: [PATCH] genirq: Fix typo CONFIG_GENIRC_IRQ_SHOW_LEVEL Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Linux/PPC Development , Linux Kernel Development List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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 --- kernel/irq/proc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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) -- 1.7.0.4 Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds