diff options
Diffstat (limited to 'kernel/irq/handle.c')
-rw-r--r-- | kernel/irq/handle.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index 6492400cb50d..4db7d2df86b6 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -203,7 +203,7 @@ out_unlock: | |||
203 | return desc; | 203 | return desc; |
204 | } | 204 | } |
205 | 205 | ||
206 | #else | 206 | #else /* !CONFIG_SPARSE_IRQ */ |
207 | 207 | ||
208 | struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { | 208 | struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { |
209 | [0 ... NR_IRQS-1] = { | 209 | [0 ... NR_IRQS-1] = { |
@@ -218,7 +218,16 @@ struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { | |||
218 | } | 218 | } |
219 | }; | 219 | }; |
220 | 220 | ||
221 | #endif | 221 | struct irq_desc *irq_to_desc(unsigned int irq) |
222 | { | ||
223 | return (irq < NR_IRQS) ? irq_desc + irq : NULL; | ||
224 | } | ||
225 | |||
226 | struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu) | ||
227 | { | ||
228 | return irq_to_desc(irq); | ||
229 | } | ||
230 | #endif /* !CONFIG_SPARSE_IRQ */ | ||
222 | 231 | ||
223 | /* | 232 | /* |
224 | * What should we do if we get a hw irq event on an illegal vector? | 233 | * What should we do if we get a hw irq event on an illegal vector? |