Skip to content

Commit 32cffdd

Browse files
committed
genirq: Fix fatfinered fixup really
Putting the argument inside the quote does not really help. Signed-off-by: Thomas Gleixner <[email protected]>
1 parent 1e7c5fd commit 32cffdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/irq/manage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ void enable_percpu_irq(unsigned int irq, unsigned int type)
14351435
ret = __irq_set_trigger(desc, irq, type);
14361436

14371437
if (ret) {
1438-
WARN(1, "failed to set type for IRQ%d\n, irq");
1438+
WARN(1, "failed to set type for IRQ%d\n", irq);
14391439
goto out;
14401440
}
14411441
}

0 commit comments

Comments
 (0)