Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146805
b: refs/heads/master
c: 2f3ed17
h: refs/heads/master
i:
  146803: c02125b
v: v3
  • Loading branch information
Paul Mundt committed May 22, 2009
1 parent 4d0a887 commit 09fe596
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5f8371cec93b94a24a55ba1de642ce6eade6d62c
refs/heads/master: 2f3ed17e010e8c0873094016f93c1afbb4adb666
4 changes: 4 additions & 0 deletions trunk/arch/sh/kernel/cpu/irq/ipr.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,21 @@ void register_ipr_controller(struct ipr_desc *desc)

for (i = 0; i < desc->nr_irqs; i++) {
struct ipr_data *p = desc->ipr_data + i;
#ifdef CONFIG_SPARSE_IRQ
struct irq_desc *irq_desc;
#endif

BUG_ON(p->ipr_idx >= desc->nr_offsets);
BUG_ON(!desc->ipr_offsets[p->ipr_idx]);

#ifdef CONFIG_SPARSE_IRQ
irq_desc = irq_to_desc_alloc_cpu(p->irq, smp_processor_id());
if (unlikely(!irq_desc)) {
printk(KERN_INFO "can not get irq_desc for %d\n",
p->irq);
continue;
}
#endif

disable_irq_nosync(p->irq);
set_irq_chip_and_handler_name(p->irq, &desc->chip,
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/sh/intc.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,16 +771,19 @@ void __init register_intc_controller(struct intc_desc *desc)
for (i = 0; i < desc->nr_vectors; i++) {
struct intc_vect *vect = desc->vectors + i;
unsigned int irq = evt2irq(vect->vect);
#ifdef CONFIG_SPARSE_IRQ
struct irq_desc *irq_desc;

#endif
if (!vect->enum_id)
continue;

#ifdef CONFIG_SPARSE_IRQ
irq_desc = irq_to_desc_alloc_cpu(irq, cpu);
if (unlikely(!irq_desc)) {
printk(KERN_INFO "can not get irq_desc for %d\n", irq);
continue;
}
#endif

intc_register_irq(desc, d, vect->enum_id, irq);
}
Expand Down

0 comments on commit 09fe596

Please sign in to comment.