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:
6714796
)
irqdomain: Drop pointless NULL check in virq_debug_show_one
author
Rasmus Villemoes
<
[email protected]
>
Sun, 12 Nov 2017 21:29:03 +0000
(22:29 +0100)
committer
Thomas Gleixner
<
[email protected]
>
Sun, 12 Nov 2017 22:25:40 +0000
(23:25 +0100)
data has been already derefenced unconditionally, so it's pointless to do a
NULL pointer check on it afterwards. Drop it.
[ tglx: Depersonify changelog. ]
Signed-off-by: Rasmus Villemoes <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc: Marc Zyngier <
[email protected]
>
Link:
https://lkml.kernel.org/r/
[email protected]
kernel/irq/irqdomain.c
patch
|
blob
|
history
diff --git
a/kernel/irq/irqdomain.c
b/kernel/irq/irqdomain.c
index fbbf34293b17b119133d5cda1c4d2fb090ed7252..4f4f60015e8ab4196ef1df5107f04beda37d4c6c 100644
(file)
--- a/
kernel/irq/irqdomain.c
+++ b/
kernel/irq/irqdomain.c
@@
-921,8
+921,7
@@
static void virq_debug_show_one(struct seq_file *m, struct irq_desc *desc)
chip = irq_data_get_irq_chip(data);
seq_printf(m, "%-15s ", (chip && chip->name) ? chip->name : "none");
- seq_printf(m, data ? "0x%p " : " %p ",
- irq_data_get_irq_chip_data(data));
+ seq_printf(m, "0x%p ", irq_data_get_irq_chip_data(data));
seq_printf(m, " %c ", (desc->action && desc->action->handler) ? '*' : ' ');
direct = (irq == hwirq) && (irq < domain->revmap_direct_max_irq);