提交 451d33dd 编写于 作者: K Kulikov Vasiliy 提交者: David S. Miller

at1700: fix double free_irq

free_irq() is called both in net_close() and cleanup_card().  Since it
is requested in at1700_probe1(), leave free_irq() only in cleanup_card()
for balance.
Signed-off-by: NKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 835bb606
...@@ -811,10 +811,8 @@ static int net_close(struct net_device *dev) ...@@ -811,10 +811,8 @@ static int net_close(struct net_device *dev)
/* No statistic counters on the chip to update. */ /* No statistic counters on the chip to update. */
/* Disable the IRQ on boards of fmv18x where it is feasible. */ /* Disable the IRQ on boards of fmv18x where it is feasible. */
if (lp->jumpered) { if (lp->jumpered)
outb(0x00, ioaddr + IOCONFIG1); outb(0x00, ioaddr + IOCONFIG1);
free_irq(dev->irq, dev);
}
/* Power-down the chip. Green, green, green! */ /* Power-down the chip. Green, green, green! */
outb(0x00, ioaddr + CONFIG_1); outb(0x00, ioaddr + CONFIG_1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册