diff options
Diffstat (limited to 'drivers/sh/intc.c')
| -rw-r--r-- | drivers/sh/intc.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/sh/intc.c b/drivers/sh/intc.c index 12d13d99b6f0..d687a9b93d03 100644 --- a/drivers/sh/intc.c +++ b/drivers/sh/intc.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/sh_intc.h> | 24 | #include <linux/sh_intc.h> |
| 25 | #include <linux/sysdev.h> | 25 | #include <linux/sysdev.h> |
| 26 | #include <linux/list.h> | 26 | #include <linux/list.h> |
| 27 | #include <linux/topology.h> | ||
| 27 | 28 | ||
| 28 | #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ | 29 | #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ |
| 29 | ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \ | 30 | ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \ |
| @@ -770,11 +771,19 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
| 770 | /* register the vectors one by one */ | 771 | /* register the vectors one by one */ |
| 771 | for (i = 0; i < desc->nr_vectors; i++) { | 772 | for (i = 0; i < desc->nr_vectors; i++) { |
| 772 | struct intc_vect *vect = desc->vectors + i; | 773 | struct intc_vect *vect = desc->vectors + i; |
| 774 | unsigned int irq = evt2irq(vect->vect); | ||
| 775 | struct irq_desc *irq_desc; | ||
| 773 | 776 | ||
| 774 | if (!vect->enum_id) | 777 | if (!vect->enum_id) |
| 775 | continue; | 778 | continue; |
| 776 | 779 | ||
| 777 | intc_register_irq(desc, d, vect->enum_id, evt2irq(vect->vect)); | 780 | irq_desc = irq_to_desc_alloc_node(irq, numa_node_id()); |
| 781 | if (unlikely(!irq_desc)) { | ||
| 782 | printk(KERN_INFO "can not get irq_desc for %d\n", irq); | ||
| 783 | continue; | ||
| 784 | } | ||
| 785 | |||
| 786 | intc_register_irq(desc, d, vect->enum_id, irq); | ||
| 778 | } | 787 | } |
| 779 | } | 788 | } |
| 780 | 789 | ||
