Skip to content

Commit

Permalink
sh: intc: Fix up multi-evt irq association.
Browse files Browse the repository at this point in the history
In the multi-evt case we were accidentally associating the parent IRQ,
fix this up.

Signed-off-by: Paul Mundt <[email protected]>
  • Loading branch information
pmundt committed Aug 20, 2012
1 parent 6dab7ed commit d4b7c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/sh/intc/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ int __init register_intc_controller(struct intc_desc *desc)
if (unlikely(res)) {
if (res == -EEXIST) {
res = irq_domain_associate(d->domain,
irq, irq);
irq2, irq2);
if (unlikely(res)) {
pr_err("domain association "
"failure\n");
Expand Down

0 comments on commit d4b7c5d

Please sign in to comment.