diff options
Diffstat (limited to 'arch/powerpc/kernel/irq.c')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 1b55ffdf0026..8c1a4966867e 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -171,7 +171,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
171 | { | 171 | { |
172 | int i = *(loff_t *)v, j; | 172 | int i = *(loff_t *)v, j; |
173 | struct irqaction *action; | 173 | struct irqaction *action; |
174 | irq_desc_t *desc; | 174 | struct irq_desc *desc; |
175 | unsigned long flags; | 175 | unsigned long flags; |
176 | 176 | ||
177 | if (i == 0) { | 177 | if (i == 0) { |
@@ -672,11 +672,13 @@ unsigned int irq_create_mapping(struct irq_host *host, | |||
672 | return NO_IRQ; | 672 | return NO_IRQ; |
673 | } | 673 | } |
674 | } | 674 | } |
675 | pr_debug("irq: -> obtained virq %d\n", virq); | ||
676 | 675 | ||
677 | if (irq_setup_virq(host, virq, hwirq)) | 676 | if (irq_setup_virq(host, virq, hwirq)) |
678 | return NO_IRQ; | 677 | return NO_IRQ; |
679 | 678 | ||
679 | printk(KERN_DEBUG "irq: irq %lu on host %s mapped to virtual irq %u\n", | ||
680 | hwirq, host->of_node ? host->of_node->full_name : "null", virq); | ||
681 | |||
680 | return virq; | 682 | return virq; |
681 | } | 683 | } |
682 | EXPORT_SYMBOL_GPL(irq_create_mapping); | 684 | EXPORT_SYMBOL_GPL(irq_create_mapping); |
@@ -1038,7 +1040,7 @@ arch_initcall(irq_late_init); | |||
1038 | static int virq_debug_show(struct seq_file *m, void *private) | 1040 | static int virq_debug_show(struct seq_file *m, void *private) |
1039 | { | 1041 | { |
1040 | unsigned long flags; | 1042 | unsigned long flags; |
1041 | irq_desc_t *desc; | 1043 | struct irq_desc *desc; |
1042 | const char *p; | 1044 | const char *p; |
1043 | char none[] = "none"; | 1045 | char none[] = "none"; |
1044 | int i; | 1046 | int i; |