Commit 12ebbff8 authored by Dave Hansen's avatar Dave Hansen Committed by Linus Torvalds

[PATCH] fix e1000 after irq craziness

I just duplicated the method used in drivers/net/tulip/de2104x.c
parent cb217905
......@@ -1699,7 +1699,7 @@ e1000_irq_disable(struct e1000_adapter *adapter)
{
atomic_inc(&adapter->irq_sem);
E1000_WRITE_REG(&adapter->hw, IMC, ~0);
synchronize_irq();
synchronize_irq(adapter->netdev->irq);
}
/**
......
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