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:
f6af75d
)
irq: tsk->comm is an array
author
Alan Cox
<
[email protected]
>
Tue, 18 Dec 2012 22:21:25 +0000
(14:21 -0800)
committer
Linus Torvalds
<
[email protected]
>
Tue, 18 Dec 2012 23:02:11 +0000
(15:02 -0800)
The array check is useless so remove it.
[
[email protected]
: remove comment, per David]
Signed-off-by: Alan Cox <
[email protected]
>
Cc: David Rientjes <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/irq/manage.c
patch
|
blob
|
history
diff --git
a/kernel/irq/manage.c
b/kernel/irq/manage.c
index 35c70c9e24d8f2ec6011800217e3bcd1880d6ca6..e49a288fa479036ebb25b907787b34568d421964 100644
(file)
--- a/
kernel/irq/manage.c
+++ b/
kernel/irq/manage.c
@@
-818,7
+818,7
@@
static void irq_thread_dtor(struct callback_head *unused)
action = kthread_data(tsk);
pr_err("exiting task \"%s\" (%d) is an active IRQ thread (irq %d)\n",
- tsk->comm
? tsk->comm : ""
, tsk->pid, action->irq);
+ tsk->comm, tsk->pid, action->irq);
desc = irq_to_desc(action->irq);