|
@@ -201,10 +201,11 @@ __report_bad_irq(unsigned int irq, struct irq_desc *desc,
|
|
|
raw_spin_lock_irqsave(&desc->lock, flags);
|
|
|
action = desc->action;
|
|
|
while (action) {
|
|
|
- printk(KERN_ERR "[<%p>]", action->handler);
|
|
|
- print_symbol(" (%s)",
|
|
|
- (unsigned long)action->handler);
|
|
|
- printk("\n");
|
|
|
+ printk(KERN_ERR "[<%p>] %pf", action->handler, action->handler);
|
|
|
+ if (action->thread_fn)
|
|
|
+ printk(KERN_CONT " threaded [<%p>] %pf",
|
|
|
+ action->thread_fn, action->thread_fn);
|
|
|
+ printk(KERN_CONT "\n");
|
|
|
action = action->next;
|
|
|
}
|
|
|
raw_spin_unlock_irqrestore(&desc->lock, flags);
|