]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
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 2bc86869859e12450fe496a289b0d3c2bb547d4b..67ce837ae52cdd70115a8ce436f923e96a26adc4 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;
                }
        }