diff options
-rw-r--r-- | arch/powerpc/kernel/irq.c | 6 | ||||
-rw-r--r-- | include/asm-powerpc/irq.h | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index b74b0fd764b2..0a769893c5c3 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -411,6 +411,12 @@ struct irq_map_entry irq_map[NR_IRQS]; | |||
411 | static unsigned int irq_virq_count = NR_IRQS; | 411 | static unsigned int irq_virq_count = NR_IRQS; |
412 | static struct irq_host *irq_default_host; | 412 | static struct irq_host *irq_default_host; |
413 | 413 | ||
414 | irq_hw_number_t virq_to_hw(unsigned int virq) | ||
415 | { | ||
416 | return irq_map[virq].hwirq; | ||
417 | } | ||
418 | EXPORT_SYMBOL_GPL(virq_to_hw); | ||
419 | |||
414 | struct irq_host *irq_alloc_host(unsigned int revmap_type, | 420 | struct irq_host *irq_alloc_host(unsigned int revmap_type, |
415 | unsigned int revmap_arg, | 421 | unsigned int revmap_arg, |
416 | struct irq_host_ops *ops, | 422 | struct irq_host_ops *ops, |
diff --git a/include/asm-powerpc/irq.h b/include/asm-powerpc/irq.h index 4734cc178db5..05dd5a3eb3aa 100644 --- a/include/asm-powerpc/irq.h +++ b/include/asm-powerpc/irq.h | |||
@@ -138,10 +138,7 @@ struct irq_map_entry { | |||
138 | 138 | ||
139 | extern struct irq_map_entry irq_map[NR_IRQS]; | 139 | extern struct irq_map_entry irq_map[NR_IRQS]; |
140 | 140 | ||
141 | static inline irq_hw_number_t virq_to_hw(unsigned int virq) | 141 | extern irq_hw_number_t virq_to_hw(unsigned int virq); |
142 | { | ||
143 | return irq_map[virq].hwirq; | ||
144 | } | ||
145 | 142 | ||
146 | /** | 143 | /** |
147 | * irq_alloc_host - Allocate a new irq_host data structure | 144 | * irq_alloc_host - Allocate a new irq_host data structure |