projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e7c5fd
)
genirq: Fix fatfinered fixup really
author
Thomas Gleixner
<tglx@linutronix.de>
Tue, 4 Oct 2011 16:43:57 +0000
(18:43 +0200)
committer
Thomas 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
patch
|
blob
|
history
diff --git
a/kernel/irq/manage.c
b/kernel/irq/manage.c
index 2bc86869859e12450fe496a289b0d3c2bb547d4b..67ce837ae52cdd70115a8ce436f923e96a26adc4 100644
(file)
--- 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;
}
}