sh: intc: Update for single IRQ reservation helper.
authorPaul Mundt <lethal@linux-sh.org>
Mon, 1 Nov 2010 20:10:48 +0000 (16:10 -0400)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 1 Nov 2010 20:10:48 +0000 (16:10 -0400)
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
drivers/sh/intc/core.c
drivers/sh/intc/dynamic.c

index 873a99ff8f64a454a505d1838be751dad20ae181..e5e9e6735f7d62e3d585505de7be4fe379fbbd40 100644 (file)
@@ -79,7 +79,7 @@ static void __init intc_register_irq(struct intc_desc *desc,
         * Register the IRQ position with the global IRQ map, then insert
         * it in to the radix tree.
         */
-       irq_reserve_irqs(irq, 1);
+       irq_reserve_irq(irq);
 
        raw_spin_lock_irqsave(&intc_big_lock, flags);
        radix_tree_insert(&d->tree, enum_id, intc_irq_xlate_get(irq));
index 4187cce20ffdc9cd0997b276e2f5e8dc020e2519..a3677c9dfe36e3fa6ebcac37bee81af58d9ece5c 100644 (file)
@@ -60,5 +60,5 @@ void reserve_intc_vectors(struct intc_vect *vectors, unsigned int nr_vecs)
        int i;
 
        for (i = 0; i < nr_vecs; i++)
-               irq_reserve_irqs(evt2irq(vectors[i].vect), 1);
+               irq_reserve_irq(evt2irq(vectors[i].vect));
 }