Commit 198c167c authored by Raymond Burns's avatar Raymond Burns Committed by David S. Miller

[SPARC]: Do not call sun4m_irq_rotate on sun4d.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c2d3bffe
...@@ -329,7 +329,7 @@ void handler_irq(int irq, struct pt_regs * regs) ...@@ -329,7 +329,7 @@ void handler_irq(int irq, struct pt_regs * regs)
disable_pil_irq(irq); disable_pil_irq(irq);
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
/* Only rotate on lower priority IRQ's (scsi, ethernet, etc.). */ /* Only rotate on lower priority IRQ's (scsi, ethernet, etc.). */
if(irq < 10) if((sparc_cpu_model==sun4m) && (irq < 10))
smp4m_irq_rotate(cpu); smp4m_irq_rotate(cpu);
#endif #endif
action = sparc_irq[irq].action; action = sparc_irq[irq].action;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment