diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-11-01 16:10:48 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-11-01 16:10:48 -0400 |
commit | 20f95e0b22ea45c1798261064baab57efeb3b3bc (patch) | |
tree | 8027509c2cbc1cf206c945b904ba2d79e3901255 /drivers/sh/intc/dynamic.c | |
parent | c8ddb2713c624f432fa5fe3c7ecffcdda46ea0d4 (diff) | |
download | lwn-20f95e0b22ea45c1798261064baab57efeb3b3bc.tar.gz lwn-20f95e0b22ea45c1798261064baab57efeb3b3bc.zip |
sh: intc: Update for single IRQ reservation helper.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/sh/intc/dynamic.c')
-rw-r--r-- | drivers/sh/intc/dynamic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sh/intc/dynamic.c b/drivers/sh/intc/dynamic.c index 4187cce20ffd..a3677c9dfe36 100644 --- a/drivers/sh/intc/dynamic.c +++ b/drivers/sh/intc/dynamic.c @@ -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)); } |