Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 451d33dd authored by Kulikov Vasiliy's avatar Kulikov Vasiliy Committed by David S. Miller
Browse files

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: default avatarKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 835bb606
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -811,10 +811,8 @@ static int net_close(struct net_device *dev)
	/* No statistic counters on the chip to update. */

	/* Disable the IRQ on boards of fmv18x where it is feasible. */
	if (lp->jumpered) {
	if (lp->jumpered)
		outb(0x00, ioaddr + IOCONFIG1);
		free_irq(dev->irq, dev);
	}

	/* Power-down the chip.  Green, green, green! */
	outb(0x00, ioaddr + CONFIG_1);