diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-10-15 08:31:29 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:53:14 -0400 |
commit | c6b7674f323622d86316bf7951ad9cae1ce24642 (patch) | |
tree | 00ff8c061f9c0822c56e46bc59c46dced278f9a9 | |
parent | 70dd4d992ab324a59cdcd6bedc3f4e729863d514 (diff) |
genirq: use inline function for irq_to_desc
For the non sparse irq case an inline function is perfectly fine.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | include/linux/irq.h | 15 | ||||
-rw-r--r-- | kernel/irq/handle.c | 14 |
2 files changed, 13 insertions, 16 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index dbe8734ae86c..7d1adacaadb4 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -204,8 +204,6 @@ struct irq_desc { | |||
204 | const char *name; | 204 | const char *name; |
205 | } ____cacheline_internodealigned_in_smp; | 205 | } ____cacheline_internodealigned_in_smp; |
206 | 206 | ||
207 | extern struct irq_desc *irq_to_desc(unsigned int irq); | ||
208 | extern struct irq_desc *irq_to_desc_alloc(unsigned int irq); | ||
209 | 207 | ||
210 | #ifndef CONFIG_HAVE_SPARSE_IRQ | 208 | #ifndef CONFIG_HAVE_SPARSE_IRQ |
211 | 209 | ||
@@ -216,8 +214,21 @@ extern struct irq_desc irq_desc[NR_IRQS]; | |||
216 | extern struct irq_desc *irq_desc; | 214 | extern struct irq_desc *irq_desc; |
217 | #endif | 215 | #endif |
218 | 216 | ||
217 | static inline struct irq_desc *irq_to_desc(unsigned int irq) | ||
218 | { | ||
219 | return (irq < nr_irqs) ? irq_desc + irq : NULL; | ||
220 | } | ||
221 | |||
222 | static inline struct irq_desc *irq_to_desc_alloc(unsigned int irq) | ||
223 | { | ||
224 | return irq_to_desc(irq); | ||
225 | } | ||
226 | |||
219 | #else | 227 | #else |
220 | 228 | ||
229 | extern struct irq_desc *irq_to_desc(unsigned int irq); | ||
230 | extern struct irq_desc *irq_to_desc_alloc(unsigned int irq); | ||
231 | |||
221 | extern struct irq_desc *sparse_irqs; | 232 | extern struct irq_desc *sparse_irqs; |
222 | #define for_each_irq_desc(irqX, desc) \ | 233 | #define for_each_irq_desc(irqX, desc) \ |
223 | for (desc = sparse_irqs, irqX = desc->irq; desc; desc = desc->next, irqX = desc ? desc->irq : -1U) | 234 | for (desc = sparse_irqs, irqX = desc->irq; desc; desc = desc->next, irqX = desc ? desc->irq : -1U) |
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index fb6bdb602a93..c19896f895f9 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -262,20 +262,6 @@ struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { | |||
262 | 262 | ||
263 | #endif | 263 | #endif |
264 | 264 | ||
265 | #ifndef CONFIG_HAVE_SPARSE_IRQ | ||
266 | struct irq_desc *irq_to_desc(unsigned int irq) | ||
267 | { | ||
268 | if (irq < nr_irqs) | ||
269 | return &irq_desc[irq]; | ||
270 | |||
271 | return NULL; | ||
272 | } | ||
273 | struct irq_desc *irq_to_desc_alloc(unsigned int irq) | ||
274 | { | ||
275 | return irq_to_desc(irq); | ||
276 | } | ||
277 | #endif | ||
278 | |||
279 | /* | 265 | /* |
280 | * What should we do if we get a hw irq event on an illegal vector? | 266 | * What should we do if we get a hw irq event on an illegal vector? |
281 | * Each architecture has to answer this themself. | 267 | * Each architecture has to answer this themself. |