OSDN Git Service

genirq: Fix fatfinered fixup really
authorThomas Gleixner <tglx@linutronix.de>
Tue, 4 Oct 2011 16:43:57 +0000 (18:43 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 4 Oct 2011 16:43:57 +0000 (18:43 +0200)
Putting the argument inside the quote does not really help.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/manage.c

index 2bc8686..67ce837 100644 (file)
@@ -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;
                }
        }