diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/cpu/irq/ipr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/irq/ipr.c b/arch/sh/kernel/cpu/irq/ipr.c index fa0c8467a280..6ad40dbad881 100644 --- a/arch/sh/kernel/cpu/irq/ipr.c +++ b/arch/sh/kernel/cpu/irq/ipr.c | |||
@@ -59,17 +59,21 @@ void register_ipr_controller(struct ipr_desc *desc) | |||
59 | 59 | ||
60 | for (i = 0; i < desc->nr_irqs; i++) { | 60 | for (i = 0; i < desc->nr_irqs; i++) { |
61 | struct ipr_data *p = desc->ipr_data + i; | 61 | struct ipr_data *p = desc->ipr_data + i; |
62 | #ifdef CONFIG_SPARSE_IRQ | ||
62 | struct irq_desc *irq_desc; | 63 | struct irq_desc *irq_desc; |
64 | #endif | ||
63 | 65 | ||
64 | BUG_ON(p->ipr_idx >= desc->nr_offsets); | 66 | BUG_ON(p->ipr_idx >= desc->nr_offsets); |
65 | BUG_ON(!desc->ipr_offsets[p->ipr_idx]); | 67 | BUG_ON(!desc->ipr_offsets[p->ipr_idx]); |
66 | 68 | ||
69 | #ifdef CONFIG_SPARSE_IRQ | ||
67 | irq_desc = irq_to_desc_alloc_cpu(p->irq, smp_processor_id()); | 70 | irq_desc = irq_to_desc_alloc_cpu(p->irq, smp_processor_id()); |
68 | if (unlikely(!irq_desc)) { | 71 | if (unlikely(!irq_desc)) { |
69 | printk(KERN_INFO "can not get irq_desc for %d\n", | 72 | printk(KERN_INFO "can not get irq_desc for %d\n", |
70 | p->irq); | 73 | p->irq); |
71 | continue; | 74 | continue; |
72 | } | 75 | } |
76 | #endif | ||
73 | 77 | ||
74 | disable_irq_nosync(p->irq); | 78 | disable_irq_nosync(p->irq); |
75 | set_irq_chip_and_handler_name(p->irq, &desc->chip, | 79 | set_irq_chip_and_handler_name(p->irq, &desc->chip, |