Commit 72cb8529 authored by Stephen Hemminger's avatar Stephen Hemminger

sky2: synchronize irq on remove

Need to make sure interrupt is not racing with unregister of
network device.
Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
parent e71ebd73
......@@ -3327,6 +3327,8 @@ static void __devexit sky2_remove(struct pci_dev *pdev)
del_timer_sync(&hw->idle_timer);
sky2_write32(hw, B0_IMSK, 0);
synchronize_irq(hw->pdev->irq);
dev0 = hw->dev[0];
dev1 = hw->dev[1];
if (dev1)
......
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