aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/spurious.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/irq/spurious.c')
-rw-r--r--kernel/irq/spurious.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c
index dfbd550401b2..c9a78ba30b6f 100644
--- a/kernel/irq/spurious.c
+++ b/kernel/irq/spurious.c
@@ -201,10 +201,11 @@ __report_bad_irq(unsigned int irq, struct irq_desc *desc,
201 raw_spin_lock_irqsave(&desc->lock, flags); 201 raw_spin_lock_irqsave(&desc->lock, flags);
202 action = desc->action; 202 action = desc->action;
203 while (action) { 203 while (action) {
204 printk(KERN_ERR "[<%p>]", action->handler); 204 printk(KERN_ERR "[<%p>] %pf", action->handler, action->handler);
205 print_symbol(" (%s)", 205 if (action->thread_fn)
206 (unsigned long)action->handler); 206 printk(KERN_CONT " threaded [<%p>] %pf",
207 printk("\n"); 207 action->thread_fn, action->thread_fn);
208 printk(KERN_CONT "\n");
208 action = action->next; 209 action = action->next;
209 } 210 }
210 raw_spin_unlock_irqrestore(&desc->lock, flags); 211 raw_spin_unlock_irqrestore(&desc->lock, flags);