Skip to content

Commit

Permalink
genirq: Fix fatfinered fixup really
Browse files Browse the repository at this point in the history
Putting the argument inside the quote does not really help.

Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
KAGA-KOKO committed Oct 4, 2011
1 parent 1e7c5fd commit 32cffdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/irq/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 32cffdd

Please sign in to comment.