From: Thomas Gleixner Date: Tue, 4 Oct 2011 16:43:57 +0000 (+0200) Subject: genirq: Fix fatfinered fixup really X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=32cffdd;p=mv-sheeva.git genirq: Fix fatfinered fixup really Putting the argument inside the quote does not really help. Signed-off-by: Thomas Gleixner --- diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 2bc86869859..67ce837ae52 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c @@ -1435,7 +1435,7 @@ void enable_percpu_irq(unsigned int irq, unsigned int type) ret = __irq_set_trigger(desc, irq, type); if (ret) { - WARN(1, "failed to set type for IRQ%d\n, irq"); + WARN(1, "failed to set type for IRQ%d\n", irq); goto out; } }