diff options
Diffstat (limited to 'kernel/irq/debug.h')
-rw-r--r-- | kernel/irq/debug.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/kernel/irq/debug.h b/kernel/irq/debug.h index 17f05ef8f575..7e06dd275c17 100644 --- a/kernel/irq/debug.h +++ b/kernel/irq/debug.h | |||
@@ -3,8 +3,6 @@ | |||
3 | * Debugging printout: | 3 | * Debugging printout: |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/kallsyms.h> | ||
7 | |||
8 | #define ___P(f) if (desc->status_use_accessors & f) printk("%14s set\n", #f) | 6 | #define ___P(f) if (desc->status_use_accessors & f) printk("%14s set\n", #f) |
9 | #define ___PS(f) if (desc->istate & f) printk("%14s set\n", #f) | 7 | #define ___PS(f) if (desc->istate & f) printk("%14s set\n", #f) |
10 | /* FIXME */ | 8 | /* FIXME */ |
@@ -14,14 +12,14 @@ static inline void print_irq_desc(unsigned int irq, struct irq_desc *desc) | |||
14 | { | 12 | { |
15 | printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n", | 13 | printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n", |
16 | irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled); | 14 | irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled); |
17 | printk("->handle_irq(): %p, ", desc->handle_irq); | 15 | printk("->handle_irq(): %p, %pS\n", |
18 | print_symbol("%s\n", (unsigned long)desc->handle_irq); | 16 | desc->handle_irq, desc->handle_irq); |
19 | printk("->irq_data.chip(): %p, ", desc->irq_data.chip); | 17 | printk("->irq_data.chip(): %p, %pS\n", |
20 | print_symbol("%s\n", (unsigned long)desc->irq_data.chip); | 18 | desc->irq_data.chip, desc->irq_data.chip); |
21 | printk("->action(): %p\n", desc->action); | 19 | printk("->action(): %p\n", desc->action); |
22 | if (desc->action) { | 20 | if (desc->action) { |
23 | printk("->action->handler(): %p, ", desc->action->handler); | 21 | printk("->action->handler(): %p, %pS\n", |
24 | print_symbol("%s\n", (unsigned long)desc->action->handler); | 22 | desc->action->handler, desc->action->handler); |
25 | } | 23 | } |
26 | 24 | ||
27 | ___P(IRQ_LEVEL); | 25 | ___P(IRQ_LEVEL); |