Skip to content

Commit

Permalink
[IA64] use generic_handle_irq()
Browse files Browse the repository at this point in the history
Use generic_handle_irq() to handle mixed-type irq handling.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Ingo Molnar authored and Tony Luck committed Nov 16, 2006
1 parent 06344db commit 5fbb004
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/ia64/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ void fixup_irqs(void)
struct pt_regs *old_regs = set_irq_regs(NULL);

vectors_in_migration[irq]=0;
__do_IRQ(irq);
generic_handle_irq(irq);
set_irq_regs(old_regs);
}
}
Expand Down
4 changes: 2 additions & 2 deletions arch/ia64/kernel/irq_ia64.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ ia64_handle_irq (ia64_vector vector, struct pt_regs *regs)
ia64_setreg(_IA64_REG_CR_TPR, vector);
ia64_srlz_d();

__do_IRQ(local_vector_to_irq(vector));
generic_handle_irq(local_vector_to_irq(vector));

/*
* Disable interrupts and send EOI:
Expand Down Expand Up @@ -242,7 +242,7 @@ void ia64_process_pending_intr(void)
* Probably could shared code.
*/
vectors_in_migration[local_vector_to_irq(vector)]=0;
__do_IRQ(local_vector_to_irq(vector));
generic_handle_irq(local_vector_to_irq(vector));
set_irq_regs(old_regs);

/*
Expand Down

0 comments on commit 5fbb004

Please sign in to comment.